It's just a timer

This commit is contained in:
2025-03-15 00:02:39 +01:00
parent a29f090895
commit 8c7150a1ed
2 changed files with 14 additions and 5 deletions

View File

@@ -15,11 +15,20 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Simple Timer',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
title: 'Just a timer',
darkTheme: ThemeData(
brightness: Brightness.dark,
useMaterial3: true,
scaffoldBackgroundColor: const Color(0xFF111827),
colorSchemeSeed: const Color(0xFF111827),
highlightColor: const Color(0xff1f2937),
textTheme: TextTheme(
bodyLarge: TextStyle(fontSize: 22),
bodyMedium: TextStyle(fontSize: 20),
bodySmall: TextStyle(fontSize: 17),
),
),
home: const MyHomePage(title: 'Simple Timer'),
home: const MyHomePage(title: 'Just a timer'),
);
}
}