app_routes.dart
3.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
part of 'app_pages.dart';
// DO NOT EDIT. This is code generated via package:get_cli/get_cli.dart
abstract class Routes {
Routes._();
static const USER_ONBOARDING = _Paths.USER_ONBOARDING;
static const MEMBERSHIP_OFFER = _Paths.MEMBERSHIP_OFFER;
static const MEMBERSHIP_DETAIL = _Paths.MEMBERSHIP_DETAIL;
static const LOGIN = _Paths.LOGIN;
static const DEVELOPER_OPTIONS = _Paths.DEVELOPER_OPTIONS;
static const USER_INFORMATION = _Paths.USER_INFORMATION;
static const TOKEN_LOGIN = _Paths.TOKEN_LOGIN;
static const ROUTE_LIST = _Paths.ROUTE_LIST;
static const PURCHASE = _Paths.PURCHASE;
static const ADD_FRIEND = _Paths.ADD_FRIEND;
static const PREMIUM_ACTIVATED = _Paths.PREMIUM_ACTIVATED;
static const PRIVACY_SETTINGS = _Paths.PRIVACY_SETTINGS;
static const HELP = _Paths.HELP;
static const SUBMIT_FEEDBACK = _Paths.SUBMIT_FEEDBACK;
static const FEEDBACK_LIST = _Paths.FEEDBACK_LIST;
static const WATCH_THEME = _Paths.WATCH_THEME;
static const WATCH_THEME_PREVIEW = _Paths.WATCH_THEME_PREVIEW;
static const WATCH_THEME_CREATE = _Paths.WATCH_THEME_CREATE;
static const WATCH_THEME_CUSTOM_PREVIEW = _Paths.WATCH_THEME_CUSTOM_PREVIEW;
static const ACCOUNT_SETTINGS = _Paths.ACCOUNT_SETTINGS;
static const FRIEND_TREND = _Paths.FRIEND_TREND;
static const FRIEND_HOME = _Paths.FRIEND_HOME;
static const APPLE_HEALTH_UPLOAD_TEST = _Paths.APPLE_HEALTH_UPLOAD_TEST;
static const ADD_SECURITY_EMAIL = _Paths.ADD_SECURITY_EMAIL;
static const CHANGE_SECURITY_EMAIL = _Paths.CHANGE_SECURITY_EMAIL;
static const RESET_PASSWORD = _Paths.RESET_PASSWORD;
static const HW_HEALTH_AUTH_WEB_VIEW = _Paths.HW_HEALTH_AUTH_WEB_VIEW;
static const INTERACT = _Paths.INTERACT;
static const CHANGE_PHONE = _Paths.CHANGE_PHONE;
}
abstract class _Paths {
_Paths._();
static const USER_ONBOARDING = '/user-onboarding';
static const MEMBERSHIP_OFFER = '/membership-offer';
static const MEMBERSHIP_DETAIL = '/membership-detail';
static const LOGIN = '/login';
static const DEVELOPER_OPTIONS = '/developer-options';
static const USER_INFORMATION = '/developer-options/user-information';
static const TOKEN_LOGIN = '/developer-options/token-login';
static const ROUTE_LIST = '/route-list';
static const PURCHASE = '/purchase';
static const ADD_FRIEND = '/add-friend';
static const PREMIUM_ACTIVATED = '/premium-activated';
static const PRIVACY_SETTINGS = '/privacy-settings';
static const HELP = '/help';
static const SUBMIT_FEEDBACK = '/submit-feedback';
static const FEEDBACK_LIST = '/feedback-list';
static const WATCH_THEME = '/watch-theme';
static const WATCH_THEME_PREVIEW = '/watch-theme/preview';
static const WATCH_THEME_CREATE = '/watch-theme/create';
static const WATCH_THEME_CUSTOM_PREVIEW = '/watch-theme/custom-preview';
static const ACCOUNT_SETTINGS = '/account-settings';
static const FRIEND_TREND = '/friend-trend';
static const FRIEND_HOME = '/friend-home';
static const APPLE_HEALTH_UPLOAD_TEST = '/apple-health-upload-test';
static const ADD_SECURITY_EMAIL = '/add-security-email';
static const CHANGE_SECURITY_EMAIL = '/change-security-email';
static const RESET_PASSWORD = '/reset-password';
static const HW_HEALTH_AUTH_WEB_VIEW = '/hw-health-auth-webview';
static const INTERACT = '/interact';
static const CHANGE_PHONE = '/change-phone';
}