multilizely 0.0.4
multilizely: ^0.0.4 copied to clipboard
A Command Line Interface for working with Localizely in flutter projects that contain multiple l10n.yaml files.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate multilizelyUse it
The package has the following executables:
$ multilizely
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add multilizelyWith Flutter:
$ flutter pub add multilizelyThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
multilizely: ^0.0.4Alternatively, 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:multilizely/command_parser.dart';
import 'package:multilizely/command_runner.dart';
import 'package:multilizely/commands.dart';
import 'package:multilizely/config/build_config.dart';
import 'package:multilizely/config/config.dart';
import 'package:multilizely/config/package_config.dart';
import 'package:multilizely/localization_builder.dart';
import 'package:multilizely/localization_file.dart';
import 'package:multilizely/localization_package.dart';
import 'package:multilizely/localizely_api.dart';