# Conflicts: # apps/mobile_app/lib/navigation/app_router.dart # apps/mobile_app/pubspec.yaml # modules/legacy/melos_legacy.iml # packages/design_system/fonts/config.json
34 lines
1.3 KiB
Dart
34 lines
1.3 KiB
Dart
class AppRoutes {
|
|
static const splash = '/splash';
|
|
static const login = '/login';
|
|
static const signup = '/signup';
|
|
static const onboarding = '/onboarding';
|
|
static const linkPhone = '/request_link_phone';
|
|
static const phoneCode = '/verify_link_phone_code';
|
|
static const deviceSignup = '/device_signup';
|
|
static const recoverPassword = '/recover_password';
|
|
|
|
static const dashboard = '/dashboard';
|
|
|
|
static const dashboardHome = '$dashboard/home';
|
|
static const dashboardActivity = '$dashboard/activity';
|
|
static const dashboardNotifications = '$dashboard/notifications';
|
|
static const dashboardProfile = '$dashboard/profile';
|
|
|
|
static const legacy = '/legacy';
|
|
|
|
static const accountSettings = '$legacy/account_settings';
|
|
static const personalData = '$accountSettings/personal_data';
|
|
static const linkedDevices = '$accountSettings/linked_devices';
|
|
static const appUsers = '$accountSettings/app_users';
|
|
|
|
static const legacyDashboard = '$legacy/dashboard';
|
|
|
|
static const dashboardHub = '$legacyDashboard/hub';
|
|
static const dashboardFunctions = '$legacyDashboard/functions';
|
|
|
|
static const contacts = '$dashboardFunctions/contacts';
|
|
static const remoteConnection = '$dashboardFunctions/remote_connection';
|
|
static const locateDevice = '$dashboardFunctions/locateDevice';
|
|
}
|