flutter_gen
flutter_gen copied to clipboard
Json support, Json to translation strings
Hi, thanks for the package.
I'm using Json file to store translation strings:
{
"appTitle": "Title",
"continueButton": "Continue"
}
And I want to generate Strings
class from it
class Strings {
const Strings._();
static const appTitle = 'appTitle';
static const continueButton = 'continueButton';
}
Want the same thing. looking to work with dynamic strings option too.
This should be covered by Flutter's localization tool. There is no plan for us to create the same functionality.