From 31627c206038b82b54174a5a407491dc633cf5aa Mon Sep 17 00:00:00 2001 From: atlasan Date: Tue, 31 Jan 2023 16:16:43 +0100 Subject: [PATCH] fix format - after translation mods --- lib/main.dart | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index 2a85c73..41828cd 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -101,7 +101,7 @@ Future main() async { Locale('en'), Locale('fr'), Locale('es'), - Locale('it'), + Locale('it') ], path: 'assets/translations', fallbackLocale: const Locale('en'), @@ -115,7 +115,12 @@ Future main() async { .then((_) { runApp(EasyLocalization( // test, force locale :: startLocale: Locale.fromSubtags(languageCode: 'it'), - supportedLocales: const [Locale('en'), Locale('fr'), Locale('es'), Locale('it'),], + supportedLocales: const [ + Locale('en'), + Locale('fr'), + Locale('es'), + Locale('it') + ], path: 'assets/translations', fallbackLocale: const Locale('en'), child: const Gecko(),