You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.8 KiB
99 lines
2.8 KiB
import 'package:flutter/foundation.dart'; |
|
import 'package:flutter/material.dart'; |
|
import 'package:flutter_dotenv/flutter_dotenv.dart'; |
|
import 'package:flutter_native_splash/flutter_native_splash.dart'; |
|
import 'package:neon/src/blocs/accounts.dart'; |
|
import 'package:neon/src/blocs/push_notifications.dart'; |
|
import 'package:neon/src/neon.dart'; |
|
import 'package:package_info_plus/package_info_plus.dart'; |
|
import 'package:provider/provider.dart'; |
|
import 'package:shared_preferences/shared_preferences.dart'; |
|
|
|
Future main() async { |
|
Env? env; |
|
try { |
|
await dotenv.load(fileName: 'assets/.env'); |
|
if (dotenv.env.keys.isNotEmpty) { |
|
if (kReleaseMode) { |
|
throw Exception('A release build can not contain a .env file'); |
|
} |
|
env = Env.fromMap(dotenv.env); |
|
} |
|
} catch (e) {} |
|
|
|
WidgetsFlutterBinding.ensureInitialized(); |
|
|
|
FlutterNativeSplash.preserve(widgetsBinding: WidgetsBinding.instance); |
|
|
|
final sharedPreferences = await SharedPreferences.getInstance(); |
|
|
|
final platform = await getNeonPlatform(); |
|
final cache = Cache(platform); |
|
await cache.init(); |
|
final requestManager = RequestManager(cache); |
|
final allAppImplementations = getAppImplementations(sharedPreferences, requestManager, platform); |
|
|
|
final packageInfo = await PackageInfo.fromPlatform(); |
|
|
|
final globalOptions = GlobalOptions( |
|
Storage('global', sharedPreferences), |
|
packageInfo, |
|
); |
|
|
|
final accountsBloc = AccountsBloc( |
|
requestManager, |
|
Storage('accounts', sharedPreferences), |
|
sharedPreferences, |
|
globalOptions, |
|
packageInfo, |
|
allAppImplementations, |
|
); |
|
final pushNotificationsBloc = PushNotificationsBloc( |
|
accountsBloc, |
|
sharedPreferences, |
|
globalOptions, |
|
env, |
|
platform, |
|
); |
|
|
|
runApp( |
|
MultiProvider( |
|
providers: [ |
|
Provider<SharedPreferences>( |
|
create: (final _) => sharedPreferences, |
|
), |
|
Provider<Env?>( |
|
create: (final _) => env, |
|
), |
|
Provider<NeonPlatform>( |
|
create: (final _) => platform, |
|
), |
|
Provider<GlobalOptions>( |
|
create: (final _) => globalOptions, |
|
), |
|
Provider<RequestManager>( |
|
create: (final _) => requestManager, |
|
), |
|
Provider<AccountsBloc>( |
|
create: (final _) => accountsBloc, |
|
), |
|
Provider<PushNotificationsBloc>( |
|
create: (final _) => pushNotificationsBloc, |
|
), |
|
Provider<List<AppImplementation>>( |
|
create: (final _) => allAppImplementations, |
|
), |
|
Provider<PackageInfo>( |
|
create: (final _) => packageInfo, |
|
), |
|
], |
|
child: NeonApp( |
|
accountsBloc: accountsBloc, |
|
sharedPreferences: sharedPreferences, |
|
env: env, |
|
platform: platform, |
|
globalOptions: globalOptions, |
|
), |
|
), |
|
); |
|
}
|
|
|