18 lines
645 B
Dart
18 lines
645 B
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 deviceSetup = '/device_setup';
|
|
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';
|
|
}
|