mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
128 lines
4.1 KiB
Dart
128 lines
4.1 KiB
Dart
import 'package:dynamic_color/dynamic_color.dart';
|
|
import 'package:fl_lib/fl_lib.dart';
|
|
import 'package:fl_lib/generated/l10n/lib_l10n.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:icons_plus/icons_plus.dart';
|
|
import 'package:responsive_framework/responsive_framework.dart';
|
|
import 'package:server_box/core/extension/context/locale.dart';
|
|
import 'package:server_box/data/res/build_data.dart';
|
|
import 'package:server_box/data/res/store.dart';
|
|
import 'package:server_box/generated/l10n/l10n.dart';
|
|
import 'package:server_box/view/page/home.dart';
|
|
|
|
part 'intro.dart';
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
_setup(context);
|
|
return ListenableBuilder(
|
|
listenable: RNodes.app,
|
|
builder: (context, _) {
|
|
if (!Stores.setting.useSystemPrimaryColor.fetch()) {
|
|
return _build(context);
|
|
}
|
|
|
|
return _buildDynamicColor(context);
|
|
},
|
|
);
|
|
}
|
|
|
|
Widget _build(BuildContext context) {
|
|
final colorSeed = Color(Stores.setting.colorSeed.fetch());
|
|
UIs.colorSeed = colorSeed;
|
|
UIs.primaryColor = colorSeed;
|
|
|
|
return _buildApp(
|
|
context,
|
|
light: ThemeData(
|
|
useMaterial3: true,
|
|
colorSchemeSeed: UIs.colorSeed,
|
|
appBarTheme: AppBarTheme(scrolledUnderElevation: 0.0),
|
|
),
|
|
dark: ThemeData(
|
|
useMaterial3: true,
|
|
brightness: Brightness.dark,
|
|
colorSchemeSeed: UIs.colorSeed,
|
|
appBarTheme: AppBarTheme(scrolledUnderElevation: 0.0),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildDynamicColor(BuildContext context) {
|
|
return DynamicColorBuilder(
|
|
builder: (light, dark) {
|
|
final lightTheme = ThemeData(useMaterial3: true, colorScheme: light);
|
|
final darkTheme = ThemeData(useMaterial3: true, brightness: Brightness.dark, colorScheme: dark);
|
|
if (context.isDark && dark != null) {
|
|
UIs.primaryColor = dark.primary;
|
|
} else if (!context.isDark && light != null) {
|
|
UIs.primaryColor = light.primary;
|
|
}
|
|
|
|
return _buildApp(context, light: lightTheme, dark: darkTheme);
|
|
},
|
|
);
|
|
}
|
|
|
|
Widget _buildApp(BuildContext ctx, {required ThemeData light, required ThemeData dark}) {
|
|
final tMode = Stores.setting.themeMode.fetch();
|
|
// Issue #57
|
|
final themeMode = switch (tMode) {
|
|
1 || 2 => ThemeMode.values[tMode],
|
|
3 => ThemeMode.dark,
|
|
_ => ThemeMode.system,
|
|
};
|
|
final locale = Stores.setting.locale.fetch().toLocale;
|
|
|
|
return MaterialApp(
|
|
key: ValueKey(locale),
|
|
builder: (context, child) => ResponsiveBreakpoints.builder(
|
|
child: child ?? UIs.placeholder,
|
|
breakpoints: const [
|
|
Breakpoint(start: 0, end: 600, name: MOBILE),
|
|
Breakpoint(start: 600, end: 1199, name: TABLET),
|
|
Breakpoint(start: 1199, end: 3840, name: DESKTOP),
|
|
],
|
|
),
|
|
locale: locale,
|
|
localizationsDelegates: const [LibLocalizations.delegate, ...AppLocalizations.localizationsDelegates],
|
|
supportedLocales: AppLocalizations.supportedLocales,
|
|
localeListResolutionCallback: LocaleUtil.resolve,
|
|
navigatorObservers: [AppRouteObserver.instance],
|
|
title: BuildData.name,
|
|
themeMode: themeMode,
|
|
theme: light.fixWindowsFont,
|
|
darkTheme: (tMode < 3 ? dark : dark.toAmoled).fixWindowsFont,
|
|
home: FutureBuilder<List<IntroPageBuilder>>(
|
|
future: _IntroPage.builders,
|
|
builder: (context, snapshot) {
|
|
context.setLibL10n();
|
|
final appL10n = AppLocalizations.of(context);
|
|
if (appL10n != null) l10n = appL10n;
|
|
|
|
Widget child;
|
|
if (snapshot.connectionState == ConnectionState.waiting) {
|
|
child = const Scaffold(body: Center(child: CircularProgressIndicator()));
|
|
} else {
|
|
final intros = snapshot.data ?? [];
|
|
if (intros.isNotEmpty) {
|
|
child = _IntroPage(intros);
|
|
} else {
|
|
child = const HomePage();
|
|
}
|
|
}
|
|
|
|
return VirtualWindowFrame(title: BuildData.name, child: child);
|
|
},
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
void _setup(BuildContext context) async {
|
|
SystemUIs.setTransparentNavigationBar(context);
|
|
}
|