mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
14bac950cf
proper folders for models unified _screen_ folder filenames
85 lines
3 KiB
Dart
85 lines
3 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
import 'data/models/ev_source_type.dart';
|
|
import 'data/permissions_service.dart';
|
|
import 'data/shared_prefs_service.dart';
|
|
import 'generated/l10n.dart';
|
|
import 'res/theme.dart';
|
|
import 'screens/metering/flow_metering.dart';
|
|
import 'screens/settings/screen_settings.dart';
|
|
import 'utils/stop_type_provider.dart';
|
|
|
|
final RouteObserver<PageRoute> routeObserver = RouteObserver<PageRoute>();
|
|
|
|
class Application extends StatefulWidget {
|
|
final EvSourceType evSource;
|
|
|
|
const Application(this.evSource, {super.key});
|
|
|
|
@override
|
|
State<Application> createState() => _ApplicationState();
|
|
}
|
|
|
|
class _ApplicationState extends State<Application> {
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
final mySystemTheme = SystemUiOverlayStyle.light.copyWith(
|
|
statusBarColor: Colors.transparent,
|
|
statusBarBrightness: Brightness.light,
|
|
statusBarIconBrightness: Brightness.dark,
|
|
systemNavigationBarColor: Colors.transparent,
|
|
systemNavigationBarIconBrightness: Brightness.dark,
|
|
);
|
|
SystemChrome.setSystemUIOverlayStyle(mySystemTheme);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return FutureBuilder<SharedPreferences>(
|
|
future: SharedPreferences.getInstance(),
|
|
builder: (context, snapshot) {
|
|
if (snapshot.data != null) {
|
|
return MultiProvider(
|
|
providers: [
|
|
Provider(create: (_) => UserPreferencesService(snapshot.data!)),
|
|
Provider.value(value: widget.evSource),
|
|
],
|
|
child: Provider(
|
|
create: (context) => PermissionsService(),
|
|
child: StopTypeProvider(
|
|
child: ThemeProvider(
|
|
initialPrimaryColor: const Color(0xFF2196f3),
|
|
builder: (context, child) => MaterialApp(
|
|
theme: context.watch<ThemeData>(),
|
|
localizationsDelegates: const [
|
|
S.delegate,
|
|
GlobalMaterialLocalizations.delegate,
|
|
GlobalWidgetsLocalizations.delegate,
|
|
GlobalCupertinoLocalizations.delegate,
|
|
],
|
|
supportedLocales: S.delegate.supportedLocales,
|
|
builder: (context, child) => MediaQuery(
|
|
data: MediaQuery.of(context).copyWith(textScaleFactor: 1.0),
|
|
child: child!,
|
|
),
|
|
home: const MeteringFlow(),
|
|
routes: {
|
|
"metering": (context) => const MeteringFlow(),
|
|
"settings": (context) => const SettingsScreen(),
|
|
},
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
return const SizedBox();
|
|
},
|
|
);
|
|
}
|
|
}
|