Frankdroid7 / easy_localization_loader

custom assets loaders for easy_localization

Home Page:https://pub.dev/packages/easy_localization_loader

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Custom assets loaders for Easy Localization package

Pub Version Code Climate issues GitHub closed issues GitHub contributors GitHub repo size GitHub forks GitHub stars

CodeFactor Grade GitHub license

Supported formats

  • JSON (JsonAssetLoader)
  • CSV (CsvAssetLoader)
  • HTTP (HttpAssetLoader)
  • XML (XmlAssetLoader, XmlSingleAssetLoader)
  • Yaml (YamlAssetLoader, YamlSingleAssetLoader)
  • FILE (FileAssetLoader)

Configuration

  1. Add this to your package's pubspec.yaml file:
dependencies:
  #Easy Localization main package
  easy_localization: <last_version>

    # stable version install from https://pub.dev/packages
  easy_localization_loader: <last_version>

  # Dev version install from git REPO
  easy_localization_loader:
    git: https://github.com/aissat/easy_localization_loader.git
  1. Change assetLoader and patch
...
void main(){
  runApp(EasyLocalization(
    child: MyApp(),
    supportedLocales: [Locale('en', 'US'), Locale('ar', 'DZ')],
    path: 'resources/langs/langs.csv',
    assetLoader: CsvAssetLoader()
  ));
}
...
  1. All done!.

About

custom assets loaders for easy_localization

https://pub.dev/packages/easy_localization_loader

License:MIT License


Languages

Language:Dart 100.0%