created minimal view to show tasks

This commit is contained in:
2026-06-09 11:23:25 +02:00
parent a06870fbe5
commit 1ce55045a8
2 changed files with 56 additions and 2 deletions
+5 -2
View File
@@ -1,5 +1,7 @@
import 'package:flutter/material.dart';
import 'model/pages/task_overview.dart';
void main() {
runApp(const MainApp());
}
@@ -9,8 +11,9 @@ class MainApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(body: Center(child: Text('Hello World!'))),
return MaterialApp(
routes: {TaskOverview.routeName: (context) => TaskOverview()},
initialRoute: TaskOverview.routeName,
);
}
}