Implemented Navigation

This commit is contained in:
Mohammad Salameh
2024-02-14 13:26:09 +03:00
parent 2707124a10
commit 3f1f8e72b3
13 changed files with 191 additions and 75 deletions

View File

@ -1,4 +1,7 @@
class RouteConstants {
static const String homeRoute = "/";
// static const String splash = '/';
class Routes {
static const String splash = '/';
static const String homeRoute = '/home';
static const String sceneRoute = '/scene';
static const String smartRoute = '/smart';
static const String profileRoute = '/profile';
}