iampopal / flutter_locales

MIT License
7 stars 2 forks source link

App default language #4

Closed salamay closed 1 month ago

salamay commented 1 year ago

Could not automatically detect app default language. I had to switch back to 2.0.0

iampopal commented 1 year ago

The first language your app default language in the list of languages

iampopal commented 1 year ago
void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await Locales.init(['en', 'fa', 'ps']); // get last saved language
  // remove await if you want to get app default language

  runApp(MyApp());
}