fix and improve

This commit is contained in:
Tomas Dvorak
2026-01-05 18:23:21 +01:00
parent d712fe1074
commit 2aa4c0721f
18 changed files with 356 additions and 74 deletions
+5 -4
View File
@@ -13,6 +13,7 @@ void main() async {
const SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
systemNavigationBarColor: Colors.transparent,
systemNavigationBarDividerColor: Colors.transparent,
),
);
@@ -24,13 +25,13 @@ void main() async {
runApp(
const ProviderScope(
child: LifeTimerApp(),
child: App1356(),
),
);
}
class LifeTimerApp extends ConsumerWidget {
const LifeTimerApp({super.key});
class App1356 extends ConsumerWidget {
const App1356({super.key});
@override
Widget build(BuildContext context, WidgetRef ref) {
@@ -38,7 +39,7 @@ class LifeTimerApp extends ConsumerWidget {
final themeMode = ref.watch(themeModeProvider);
return MaterialApp.router(
title: 'LifeTimer',
title: '1356',
debugShowCheckedModeBanner: false,
theme: AppTheme.light,
darkTheme: AppTheme.dark,