15 lines
509 B
Dart
15 lines
509 B
Dart
|
|
class AppRoutes {
|
||
|
|
static const login = '/login';
|
||
|
|
static const onboarding = '/onboarding';
|
||
|
|
static const linkPhone = '/link_phone';
|
||
|
|
static const phoneCode = '/phone_code';
|
||
|
|
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';
|
||
|
|
}
|