build like this
Some checks failed
Test code / Test code (push) Has been cancelled
Test code / Test code (pull_request) Has been cancelled
Build web / Build Web (pull_request) Has been cancelled
Build and release APK / Build APK (pull_request) Failing after 4m19s

This commit is contained in:
2024-05-20 12:09:33 +02:00
parent 66fc4e7d33
commit f6e3cfc8a0
3 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ class _BasePageState extends State<BasePage> {
});
}
Widget currentView = MapPage();
Widget currentView = MainPage();
@override
Widget build(BuildContext context) {
final ThemeData theme = Theme.of(context);
@@ -51,7 +51,7 @@ class _BasePageState extends State<BasePage> {
// Update the state of the app
_onItemTapped(0);
// Then close the drawer
currentView = MapPage();
currentView = MainPage();
Navigator.pop(context);
},
),