text_expressions 1.2.0 copy "text_expressions: ^1.2.0" to clipboard
text_expressions: ^1.2.0 copied to clipboard

A tiny and complete tool to supercharge static JSON strings with dynamic, user-defined expressions.

example/example.dart

import 'translation.dart';

final Translation translation = Translation();

void main() {
  translation.load(Language.english);

  print(translation.translate('ageCheck', named: {'age': 10}));
  print(translation.translate('ageCheck', named: {'age': 17}));
  print(translation.translate('ageCheck', named: {'age': 68}));
  print(translation.translate('ageCheck', named: {'age': 40}));
  testGreetings();

  translation.load(Language.polish);
  testGreetings();

  translation.load(Language.romanian);
  testGreetings();
}

void testGreetings() {
  print(translation.translate('userGreeting', named: {'number': 1}));
  print(translation.translate('userGreeting', named: {'number': 4}));
  print(translation.translate('userGreeting', named: {'number': 11}));
  print(translation.translate('userGreeting', named: {'number': 23}));
}
5
likes
130
pub points
0%
popularity

Publisher

verified publishervxern.dev

A tiny and complete tool to supercharge static JSON strings with dynamic, user-defined expressions.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

sprint

More

Packages that depend on text_expressions