瀏覽代碼

Fix lint warning

vishnukvmd 2 年之前
父節點
當前提交
5484aabfd7
共有 1 個文件被更改,包括 14 次插入13 次删除
  1. 14 13
      lib/app.dart

+ 14 - 13
lib/app.dart

@@ -82,19 +82,20 @@ class _EnteAppState extends State<EnteApp> with WidgetsBindingObserver {
       );
     } else {
       return MaterialApp(
-          title: "ente",
-          themeMode: ThemeMode.system,
-          theme: lightThemeData,
-          darkTheme: darkThemeData,
-          home: const HomeWidget(),
-          debugShowCheckedModeBanner: false,
-          builder: EasyLoading.init(),
-          supportedLocales: appSupportedLocales,
-          localeListResolutionCallback: localResolutionCallBack,
-          localizationsDelegates: const [
-            ...AppLocalizations.localizationsDelegates,
-            S.delegate
-          ]);
+        title: "ente",
+        themeMode: ThemeMode.system,
+        theme: lightThemeData,
+        darkTheme: darkThemeData,
+        home: const HomeWidget(),
+        debugShowCheckedModeBanner: false,
+        builder: EasyLoading.init(),
+        supportedLocales: appSupportedLocales,
+        localeListResolutionCallback: localResolutionCallBack,
+        localizationsDelegates: const [
+          ...AppLocalizations.localizationsDelegates,
+          S.delegate
+        ],
+      );
     }
   }