2022-02-10 09:50:37 +00:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2020-11-29 20:07:46 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2021-01-13 16:45:46 +00:00
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
2022-05-03 10:45:10 +00:00
|
|
|
import 'package:selfprivacy/config/brand_colors.dart';
|
2021-01-06 17:35:57 +00:00
|
|
|
import 'package:selfprivacy/config/hive_config.dart';
|
2022-05-03 10:45:10 +00:00
|
|
|
import 'package:selfprivacy/theming/factory/app_theme_factory.dart';
|
2023-02-23 14:49:14 +00:00
|
|
|
import 'package:selfprivacy/ui/router/router.dart';
|
2023-05-30 17:25:46 +00:00
|
|
|
// import 'package:wakelock/wakelock.dart';
|
2022-01-25 17:00:47 +00:00
|
|
|
import 'package:timezone/data/latest.dart' as tz;
|
2021-01-19 12:05:40 +00:00
|
|
|
|
2022-06-05 19:36:32 +00:00
|
|
|
import 'package:selfprivacy/config/bloc_config.dart';
|
|
|
|
import 'package:selfprivacy/config/bloc_observer.dart';
|
|
|
|
import 'package:selfprivacy/config/get_it_config.dart';
|
|
|
|
import 'package:selfprivacy/config/localization.dart';
|
|
|
|
import 'package:selfprivacy/logic/cubit/app_settings/app_settings_cubit.dart';
|
2020-11-29 20:07:46 +00:00
|
|
|
|
2021-01-06 17:35:57 +00:00
|
|
|
void main() async {
|
2021-08-29 09:50:24 +00:00
|
|
|
WidgetsFlutterBinding.ensureInitialized();
|
2021-01-06 17:35:57 +00:00
|
|
|
await HiveConfig.init();
|
2023-02-23 14:49:14 +00:00
|
|
|
// await SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
|
2022-04-29 10:45:15 +00:00
|
|
|
|
2023-05-30 17:25:46 +00:00
|
|
|
// try {
|
|
|
|
// /// Wakelock support for Linux
|
|
|
|
// /// desktop is not yet implemented
|
|
|
|
// await Wakelock.enable();
|
|
|
|
// } on PlatformException catch (e) {
|
|
|
|
// print(e);
|
|
|
|
// }
|
2022-04-29 10:45:15 +00:00
|
|
|
|
2021-03-25 20:09:56 +00:00
|
|
|
await getItSetup();
|
2021-03-14 19:18:51 +00:00
|
|
|
await EasyLocalization.ensureInitialized();
|
2022-01-25 17:00:47 +00:00
|
|
|
tz.initializeTimeZones();
|
2020-12-01 12:26:29 +00:00
|
|
|
|
2022-06-05 19:36:32 +00:00
|
|
|
final ThemeData lightThemeData = await AppThemeFactory.create(
|
2022-05-03 10:45:10 +00:00
|
|
|
isDark: false,
|
|
|
|
fallbackColor: BrandColors.primary,
|
|
|
|
);
|
2022-06-05 19:36:32 +00:00
|
|
|
final ThemeData darkThemeData = await AppThemeFactory.create(
|
2022-05-03 10:45:10 +00:00
|
|
|
isDark: true,
|
|
|
|
fallbackColor: BrandColors.primary,
|
|
|
|
);
|
|
|
|
|
2023-02-23 14:49:14 +00:00
|
|
|
Bloc.observer = SimpleBlocObserver();
|
|
|
|
|
|
|
|
runApp(
|
|
|
|
Localization(
|
|
|
|
child: SelfprivacyApp(
|
|
|
|
lightThemeData: lightThemeData,
|
|
|
|
darkThemeData: darkThemeData,
|
2022-06-05 22:40:34 +00:00
|
|
|
),
|
|
|
|
),
|
2022-01-25 17:00:47 +00:00
|
|
|
);
|
2020-11-29 20:07:46 +00:00
|
|
|
}
|
|
|
|
|
2023-02-23 14:49:14 +00:00
|
|
|
class SelfprivacyApp extends StatelessWidget {
|
|
|
|
SelfprivacyApp({
|
2022-05-03 10:45:10 +00:00
|
|
|
required this.lightThemeData,
|
|
|
|
required this.darkThemeData,
|
2022-10-26 16:26:09 +00:00
|
|
|
super.key,
|
2022-06-05 19:36:32 +00:00
|
|
|
});
|
2022-05-03 10:45:10 +00:00
|
|
|
|
|
|
|
final ThemeData lightThemeData;
|
|
|
|
final ThemeData darkThemeData;
|
|
|
|
|
2023-03-21 17:44:52 +00:00
|
|
|
final _appRouter = RootRouter(getIt.get<NavigationService>().navigatorKey);
|
2023-02-23 14:49:14 +00:00
|
|
|
|
2020-11-29 20:07:46 +00:00
|
|
|
@override
|
2022-06-05 19:36:32 +00:00
|
|
|
Widget build(final BuildContext context) => Localization(
|
2023-03-21 17:44:52 +00:00
|
|
|
child: BlocAndProviderConfig(
|
|
|
|
child: BlocBuilder<AppSettingsCubit, AppSettingsState>(
|
|
|
|
builder: (
|
|
|
|
final BuildContext context,
|
|
|
|
final AppSettingsState appSettings,
|
2023-07-22 14:15:43 +00:00
|
|
|
) {
|
|
|
|
getIt.get<ApiConfigModel>().setLocaleCode(
|
|
|
|
context.locale.languageCode,
|
|
|
|
);
|
|
|
|
return MaterialApp.router(
|
|
|
|
routeInformationParser: _appRouter.defaultRouteParser(),
|
|
|
|
routerDelegate: _appRouter.delegate(),
|
|
|
|
scaffoldMessengerKey:
|
|
|
|
getIt.get<NavigationService>().scaffoldMessengerKey,
|
|
|
|
localizationsDelegates: context.localizationDelegates,
|
|
|
|
supportedLocales: context.supportedLocales,
|
|
|
|
locale: context.locale,
|
|
|
|
debugShowCheckedModeBanner: false,
|
|
|
|
title: 'SelfPrivacy',
|
|
|
|
theme: lightThemeData,
|
|
|
|
darkTheme: darkThemeData,
|
|
|
|
themeMode: appSettings.isAutoDarkModeOn
|
|
|
|
? ThemeMode.system
|
|
|
|
: appSettings.isDarkModeOn
|
|
|
|
? ThemeMode.dark
|
|
|
|
: ThemeMode.light,
|
|
|
|
builder: (final BuildContext context, final Widget? widget) {
|
|
|
|
Widget error = const Text('...rendering error...');
|
|
|
|
if (widget is Scaffold || widget is Navigator) {
|
|
|
|
error = Scaffold(body: Center(child: error));
|
|
|
|
}
|
|
|
|
ErrorWidget.builder =
|
|
|
|
(final FlutterErrorDetails errorDetails) => error;
|
|
|
|
return widget!;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
2022-03-23 14:07:52 +00:00
|
|
|
),
|
|
|
|
),
|
2022-06-05 22:40:34 +00:00
|
|
|
);
|
2020-11-29 20:07:46 +00:00
|
|
|
}
|