localized_text_widget 0.1.0
localized_text_widget: ^0.1.0 copied to clipboard
Use with the `localized_text_key_generator` package to simplify text widgets with localized text
localized_text_widget #
Use with the localized_text_key_generator package to simplify text widgets with localized text using .arb files
Example #
This can be used to simplify
return Builder(
builder: (context) {
return Text(AppLocalizations.of(context)!.text);
},
)
to
return Localized(text: LocalizedTextGetter<AppLocalizationsKey>.getter((l) => l.text))
or when using the code generator
return Localized(text: AppLocalizationsKey.text)