Renamed app

This commit is contained in:
2025-11-12 10:54:05 +01:00
parent cb8ff4314b
commit b83fe03f35
2 changed files with 4 additions and 5 deletions

View File

@@ -8,14 +8,14 @@ void main() {
runApp(
Provider<AppDatabase>(
create: (context) => AppDatabase(),
child: const MyApp(),
child: const GameTracker(),
dispose: (context, db) => db.close(),
),
);
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
class GameTracker extends StatelessWidget {
const GameTracker({super.key});
@override
Widget build(BuildContext context) {