added new pages

This commit is contained in:
marcoabat
2023-08-05 14:07:21 +02:00
parent c5c00b999e
commit 77e1fa8244
5 changed files with 36 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
import 'package:briessenchecker/pages/edit_checklist_page.dart';
import 'package:briessenchecker/services/dbhelper.dart';
import 'package:flutter/material.dart';
import 'package:flutter_dotenv/flutter_dotenv.dart';
@@ -28,6 +29,7 @@ class MyApp extends StatelessWidget {
LandingPage.routeName: (context) => const LandingPage(),
LoginPage.routeName: (context) => const LoginPage(),
DashboardPage.routeName: (context) => const DashboardPage(),
EditChecklistPage.routeName: (context) => const EditChecklistPage(),
},
);
}