auto_localization

Creator: coderz1093

Last updated:

0 purchases

auto_localization Image
auto_localization Images

Languages

Categories

Add to Cart

Description:

auto localization

auto_localization #
A new Flutter plugin.
Flutter package to dynamically translate your app.
This plugin will AUTOMATICALLY detect the app Localization and translate the text.
HOW IT WORKS #
So the point was to find a way to convincely translate text in all the languages.
To do that we create this system who seam to works really well.
It Uses Google Translate
Getting Started #
There is even a cache system to make it faster.
Add the dependency in pubspec.yaml:
dependencies:
...
auto_localization: ^2.0.2
copied to clipboard
HOW TO USE #
init the plugin
await AutoLocalization.init(
appLanguage: 'en',
userLanguage: 'it'
);
copied to clipboard
Translate something
await AutoLocalization.translate("hello");
copied to clipboard
Use the builder to translate widgets smoothly
AutoLocalBuilder(
text: const ["ciao", "come stai?"],
builder: (TranslationWorker tw) {
print(tw.get('ciao'));
print(tw.get('come stai?'));
return Text(tw.get('ciao'),);
},
);
copied to clipboard

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.