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.
94 lines
2.4 KiB
94 lines
2.4 KiB
2 years ago
|
import 'dart:io';
|
||
|
|
||
|
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';
|
||
2 years ago
|
import 'package:neon/app.dart';
|
||
|
import 'package:neon/src/neon.dart';
|
||
2 years ago
|
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);
|
||
|
|
||
2 years ago
|
await Global.init();
|
||
|
|
||
2 years ago
|
final platform = getNeonPlatform();
|
||
2 years ago
|
|
||
|
await platform.init?.call();
|
||
|
|
||
|
final sharedPreferences = await SharedPreferences.getInstance();
|
||
|
|
||
2 years ago
|
final cache = Cache(platform);
|
||
|
await cache.init();
|
||
|
final requestManager = RequestManager(cache);
|
||
2 years ago
|
|
||
|
final globalOptions = GlobalOptions(
|
||
|
Storage('global', sharedPreferences),
|
||
|
);
|
||
|
|
||
|
final accountsBloc = AccountsBloc(
|
||
|
requestManager,
|
||
|
Storage('accounts', sharedPreferences),
|
||
|
sharedPreferences,
|
||
|
globalOptions,
|
||
|
);
|
||
|
|
||
|
final allAppImplementations = <AppImplementation>[
|
||
|
FilesApp(sharedPreferences, requestManager, platform),
|
||
|
NewsApp(sharedPreferences, requestManager, platform),
|
||
|
NotesApp(sharedPreferences, requestManager),
|
||
|
];
|
||
|
|
||
|
runApp(
|
||
|
MultiProvider(
|
||
|
providers: [
|
||
|
Provider<Env?>(
|
||
|
create: (final _) => env,
|
||
|
),
|
||
2 years ago
|
Provider<NeonPlatform>(
|
||
2 years ago
|
create: (final _) => platform,
|
||
|
),
|
||
|
Provider<GlobalOptions>(
|
||
|
create: (final _) => globalOptions,
|
||
|
),
|
||
|
Provider<RequestManager>(
|
||
|
create: (final _) => requestManager,
|
||
|
),
|
||
|
Provider<AccountsBloc>(
|
||
|
create: (final _) => accountsBloc,
|
||
|
),
|
||
|
Provider<List<AppImplementation>>(
|
||
|
create: (final _) => allAppImplementations,
|
||
|
),
|
||
|
],
|
||
2 years ago
|
child: const NeonApp(),
|
||
2 years ago
|
),
|
||
|
);
|
||
|
}
|
||
|
|
||
2 years ago
|
NeonPlatform getNeonPlatform() {
|
||
2 years ago
|
if (Platform.isAndroid) {
|
||
2 years ago
|
return AndroidNeonPlatform();
|
||
2 years ago
|
}
|
||
|
if (Platform.isLinux) {
|
||
2 years ago
|
return LinuxNeonPlatform();
|
||
2 years ago
|
}
|
||
|
|
||
|
throw UnimplementedError('No implementation for platform ${Platform.operatingSystem} found');
|
||
|
}
|