simple_flutter_i18n 1.1.0+3 copy "simple_flutter_i18n: ^1.1.0+3" to clipboard
simple_flutter_i18n: ^1.1.0+3 copied to clipboard

outdated

a package that makes it easy to have multiple langauges in your application

simple_flutter_i18n #

flutter internationalization made simple and easy to use.

Motive #

while i was searching for the packages to help me with multi-langauge stuff , setting them up was hard, working with them was even harder, so i created this simple package to help me i hope it helps you to.

How to use: #

this class is to be used with the provider package,

1- import it

import "package:simple_flutter_i18n/simple_flutter_i18n.dart";

parameters :

 langauge // Map<String, dynamic> language;
 the langauge should a isRtl key because the package looks for that key;

 isRtl // bool

  ChangeNotifierProvider.value(value: I18n(yourLanguageObject))

2- proivde it in the list of providers in your application

    MultiProvider(
    providers: [  // other providers of your application
        ChangeNotifierProvider.value(value: I18n(ku))
        ],
    child: child,
  );

3 - wrap the root of your project with a

final isRtl = Provider.of<I18n>(context).isRtl; // get the rtl of the currenctLanguage

Directionality(
      textDirection: isRtl ? TextDirection.rtl : TextDirection.ltr,
      child: child,
);

Methods #

Method Description
setLocale sets the locale for the app and notifies listeners
load loads the persisted language from storage and sets it
persist persists the current language to the storage
9
likes
0
pub points
0%
popularity

Publisher

unverified uploader

a package that makes it easy to have multiple langauges in your application

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

cupertino_icons, flutter, provider, shared_preferences

More

Packages that depend on simple_flutter_i18n