2022-12-15 11:00:28 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
2023-02-11 19:19:18 +00:00
|
|
|
import 'package:lightmeter/data/models/supported_locale.dart';
|
2023-05-11 13:30:18 +00:00
|
|
|
import 'package:lightmeter/environment.dart';
|
|
|
|
import 'package:lightmeter/generated/l10n.dart';
|
2023-06-04 11:04:04 +00:00
|
|
|
import 'package:lightmeter/providers.dart';
|
2023-08-13 18:57:46 +00:00
|
|
|
import 'package:lightmeter/providers/user_preferences_provider.dart';
|
2023-08-13 14:46:13 +00:00
|
|
|
import 'package:lightmeter/res/theme.dart';
|
2023-05-11 13:30:18 +00:00
|
|
|
import 'package:lightmeter/screens/metering/flow_metering.dart';
|
|
|
|
import 'package:lightmeter/screens/settings/flow_settings.dart';
|
2022-12-15 11:00:28 +00:00
|
|
|
|
2023-01-07 09:14:18 +00:00
|
|
|
class Application extends StatelessWidget {
|
2023-01-25 10:08:11 +00:00
|
|
|
final Environment env;
|
2022-12-15 11:00:28 +00:00
|
|
|
|
2023-01-25 10:08:11 +00:00
|
|
|
const Application(this.env, {super.key});
|
2022-12-15 11:00:28 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2023-06-04 11:04:04 +00:00
|
|
|
return LightmeterProviders(
|
|
|
|
env: env,
|
2023-08-13 14:46:13 +00:00
|
|
|
builder: (context, ready) {
|
|
|
|
if (ready) {
|
|
|
|
final theme = themeFrom(
|
2023-08-13 18:57:46 +00:00
|
|
|
UserPreferencesProvider.primaryColorOf(context),
|
|
|
|
UserPreferencesProvider.brightnessOf(context),
|
2023-08-13 14:46:13 +00:00
|
|
|
);
|
|
|
|
final systemIconsBrightness =
|
|
|
|
ThemeData.estimateBrightnessForColor(theme.colorScheme.onSurface);
|
|
|
|
return AnnotatedRegion(
|
|
|
|
value: SystemUiOverlayStyle(
|
|
|
|
statusBarColor: Colors.transparent,
|
|
|
|
statusBarBrightness:
|
|
|
|
systemIconsBrightness == Brightness.light ? Brightness.dark : Brightness.light,
|
|
|
|
statusBarIconBrightness: systemIconsBrightness,
|
|
|
|
systemNavigationBarColor: Colors.transparent,
|
|
|
|
systemNavigationBarIconBrightness: systemIconsBrightness,
|
|
|
|
),
|
|
|
|
child: MaterialApp(
|
|
|
|
theme: theme,
|
2023-08-13 18:57:46 +00:00
|
|
|
locale: Locale(UserPreferencesProvider.localeOf(context).intlName),
|
2023-08-13 14:46:13 +00:00
|
|
|
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!,
|
2022-12-16 08:08:12 +00:00
|
|
|
),
|
2023-08-13 14:46:13 +00:00
|
|
|
initialRoute: "metering",
|
|
|
|
routes: {
|
|
|
|
"metering": (context) => const MeteringFlow(),
|
|
|
|
"settings": (context) => const SettingsFlow(),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return const SizedBox();
|
|
|
|
}
|
|
|
|
},
|
2023-02-11 19:19:18 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|