more refactors and logs page handling

This commit is contained in:
shenlong-tanwen
2024-10-23 02:30:46 +05:30
parent 8f47645cdb
commit a0afea04d8
90 changed files with 2386 additions and 584 deletions
+6 -6
View File
@@ -26,14 +26,14 @@ class _ImAppState extends State<ImApp> with WidgetsBindingObserver {
builder: (_, appTheme, __) => _AppThemeBuilder(
theme: appTheme,
builder: (ctx, lightTheme, darkTheme) => MaterialApp.router(
debugShowCheckedModeBanner: false,
locale: TranslationProvider.of(ctx).flutterLocale,
supportedLocales: AppLocaleUtils.supportedLocales,
localizationsDelegates: GlobalMaterialLocalizations.delegates,
scaffoldMessengerKey: kScafMessengerKey,
routerConfig: di<AppRouter>().config(),
theme: lightTheme,
darkTheme: darkTheme,
routerConfig: di<AppRouter>().config(),
scaffoldMessengerKey: kScafMessengerKey,
locale: TranslationProvider.of(ctx).flutterLocale,
localizationsDelegates: GlobalMaterialLocalizations.delegates,
supportedLocales: AppLocaleUtils.supportedLocales,
debugShowCheckedModeBanner: false,
),
),
),