mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
11 lines
388 B
Dart
11 lines
388 B
Dart
class Routes {
|
|
static const String splash = '/';
|
|
static const String homeRoute = '/navigation';
|
|
static const String devicesRoute = '/devices';
|
|
static const String dashboardRoute = '/dashboard';
|
|
static const String sceneRoute = '/scene';
|
|
static const String layoutRoute = '/layout';
|
|
static const String profileRoute = '/profile';
|
|
static const String authRoute = '/auth';
|
|
}
|