2025-12-03 13:42:14 +01:00
|
|
|
class AppRoutes {
|
|
|
|
|
static const login = '/login';
|
2025-12-03 16:43:24 +01:00
|
|
|
static const signup = '/signup';
|
2025-12-03 13:42:14 +01:00
|
|
|
static const onboarding = '/onboarding';
|
2025-12-09 10:08:36 +01:00
|
|
|
static const linkPhone = '/request_link_phone';
|
|
|
|
|
static const phoneCode = '/verify_link_phone_code';
|
2025-12-03 16:43:24 +01:00
|
|
|
static const deviceSignup = '/device_signup';
|
2025-12-03 13:42:14 +01:00
|
|
|
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';
|
|
|
|
|
}
|