sheety_localization 0.6.0
sheety_localization: ^0.6.0 copied to clipboard
A package to generate localization files from Google Sheets. It uses the Google Sheets API to fetch translations and generates Dart localization files for use in Flutter applications.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate sheety_localizationUse it
The package has the following executables:
$ generate
$ localize
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add sheety_localizationWith Flutter:
$ flutter pub add sheety_localizationThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
sheety_localization: ^0.6.0Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:sheety_localization/sheety_localization.dart';