We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem when I tried to tapping ,I think it’s not support English writing
The text was updated successfully, but these errors were encountered:
you can change the locale to en.us in localizations_intl.dart avalible in lib/i10n by applying the value for localeName = 'en_US';
Sorry, something went wrong.
You can REPLACE the code in load Function in localization with this
static Future<IntlLocalizations> load(Locale locale) { final String name = locale.countryCode.isEmpty ? locale.languageCode : locale.toString(); String localeName = Intl.canonicalizedLocale(name); print("name是:$localeName"); localeName = 'en_US'; return initializeMessages(localeName).then((b) { Intl.defaultLocale = localeName; return new IntlLocalizations(); }); }
then tap on skip go to drawer in home page and use change language
No branches or pull requests
Problem when I tried to tapping ,I think it’s not support English writing
The text was updated successfully, but these errors were encountered: