mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 01:06:21 +01:00
Fix incorrect fallback language
This commit is contained in:
parent
9409eda9b6
commit
f07e641026
1 changed files with 6 additions and 1 deletions
|
@ -59,7 +59,12 @@ class _MyAppState extends State<MyApp> implements SnackBarHandler {
|
|||
scaffoldMessengerKey: _scaffoldMessengerKey,
|
||||
locale: language_util.getSelectedLocale(context),
|
||||
localizationsDelegates: AppLocalizations.localizationsDelegates,
|
||||
supportedLocales: AppLocalizations.supportedLocales,
|
||||
supportedLocales: <Locale>[
|
||||
Locale("en"),
|
||||
Locale("el"),
|
||||
Locale("es"),
|
||||
Locale("fr"),
|
||||
],
|
||||
debugShowCheckedModeBanner: false,
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue