feat: add update and delete functionality to tags and improve report screen

This commit is contained in:
Patryk Hegenberg 2025-04-16 16:08:45 +02:00
parent 2df0390ae2
commit ebc4cdf754
12 changed files with 464 additions and 43 deletions

View file

@ -68,15 +68,7 @@ class MyApp extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Rust Time Tracker',
theme: ThemeData(
primarySwatch: Colors.blue,
useMaterial3: true,
// Optional: Theme für BottomNavigationBar anpassen
// bottomNavigationBarTheme: const BottomNavigationBarThemeData(
// selectedItemColor: Colors.deepPurple,
// unselectedItemColor: Colors.grey,
// ),
),
theme: ThemeData(primarySwatch: Colors.blue, useMaterial3: true),
home: const InitializerWidget(),
);
}