This commit is contained in:
Hamza-Ayed
2023-09-21 00:29:25 +03:00
parent 5f402a0b65
commit 9bc121f07a
19 changed files with 253 additions and 181 deletions

View File

@@ -73,6 +73,8 @@ class MyApp extends StatelessWidget {
? const MapPage()
: box.read(BoxName.emailDriver) == null
? LoginPage()
: LoginCaptin());
: box.read(BoxName.emailDriver) != null
? const HomeCaptin()
: LoginCaptin());
}
}