Implemented Views + View for avg

This commit is contained in:
Jonas Braus
2024-11-28 21:15:11 +01:00
parent 7f85b84a15
commit ec7a03e43f
6 changed files with 188 additions and 4 deletions
+4 -1
View File
@@ -31,7 +31,7 @@ class MyApp extends StatelessWidget {
)
],
child: MaterialApp(
title: 'Flutter Demo',
title: 'Mensa Dashboard',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: const ColorScheme(
@@ -46,6 +46,9 @@ class MyApp extends StatelessWidget {
brightness: Brightness.light,
tertiary: Color.fromRGBO(251, 216, 17, 1),
onTertiary: Color.fromRGBO(60, 60, 60, 1)),
appBarTheme: const AppBarTheme(
iconTheme: IconThemeData(color: Color.fromRGBO(240, 240, 240, 1))
),
useMaterial3: true,
),
home: const MyHome()),