It's just a timer
This commit is contained in:
@@ -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'),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user