22 lines
810 B
Dart
22 lines
810 B
Dart
class AppRoutes {
|
|
static const splash = '/splash';
|
|
static const login = '/login';
|
|
static const scaTreezor = '/sca_treezor';
|
|
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';
|
|
static const dashboardProfileSettings = '$dashboardProfile/settings';
|
|
|
|
static const hipayWebView = '/hipay_webview';
|
|
}
|