sync_wording 1.0.0
sync_wording: ^1.0.0 copied to clipboard
A dart command-line application to generate localization assets and class files used by your Flutter application from a GoogleSheet document.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add sync_wordingThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
sync_wording: ^1.0.0Alternatively, your editor might support dart pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:sync_wording/config/wording_config.dart';
import 'package:sync_wording/config/wording_config_loader.dart';
import 'package:sync_wording/exporter/arb/arb_wording_exporter.dart';
import 'package:sync_wording/exporter/arb/typed_placeholder_exporter.dart';
import 'package:sync_wording/exporter/wording_exporter.dart';
import 'package:sync_wording/google/google_auth.dart';
import 'package:sync_wording/google/xlsx_drive.dart';
import 'package:sync_wording/spreadsheet_converter/validator/validator.dart';
import 'package:sync_wording/spreadsheet_converter/wording_parser.dart';
import 'package:sync_wording/spreadsheet_converter/xlsx_converter/xlsx_converter.dart';
import 'package:sync_wording/wording.dart';