translated_text

Creator: coderz1093

Last updated:

0 purchases

translated_text Image
translated_text Images
Add to Cart

Description:

translated text

translated_text #
A wrapper on the translator: ^0.1.5 package.
*Note #

It can be used to internationilize your app but not recommended for production.

A TranslatedText() widget that displays text to choosen translated language.
Getting Started #
Add this to your pubspec.yaml file.
dependecies:
translated_text: 'latest-version'
copied to clipboard
Import the package into your package.
import 'package:translated_text/translated_text.dart';
copied to clipboard
Usage #
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp( title: 'Material App',
home: Scaffold(
appBar: AppBar(
title: Text('Material App Bar'),
),
body: Center(
child: Container(
child: TranslatedText('I love Flutter',to:'hi'),
// it will be printed in hindi.
),
),
),
);
}
}
copied to clipboard
Bonus #

You can also use JumpingProgressIndicator() widget into your app.

License #
MIT License
Copyright © 2020 Lalit Jarwal
Disclamer #
This package is developed for educational purposes only. Do not depend on this package as it may break anytime as it is based on crawling the Google Translate website. Consider buying Official Google Translate API for other types of usage.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.