| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- 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 SPLASH = _Paths.SPLASH;
- static const HOME = _Paths.HOME;
- static const NODE = _Paths.NODE;
- static const WEB = _Paths.WEB;
- static const ABOUT = _Paths.ABOUT;
- static const ACCOUNT = _Paths.ACCOUNT;
- static const MARKDOWN = _Paths.MARKDOWN;
- static const SETTING = _Paths.SETTING;
- static const PRECODE = _Paths.PRECODE;
- static const PRECODE_SENDEMAIL = _Paths.PRECODE + _Paths.PRECODE_SENDEMAIL;
- static const DEVICEAUTH = _Paths.DEVICEAUTH;
- static const ROUTINGMODE = _Paths.ROUTINGMODE;
- static const LANGUAGE = _Paths.LANGUAGE;
- static const FEEDBACK = _Paths.FEEDBACK;
- static const SPLITTUNNELING = _Paths.SPLITTUNNELING;
- static const SPLITTUNNELING_SELECTAPP =
- _Paths.SPLITTUNNELING + _Paths.SPLITTUNNELING_SELECTAPP;
- static const SIGNUP = _Paths.SIGNUP;
- static const FORGOTPWD = _Paths.FORGOTPWD;
- static const LOGIN = _Paths.LOGIN;
- static const SUBSCRIPTION = _Paths.SUBSCRIPTION;
- static const MEDIALOCATION = _Paths.MEDIALOCATION;
- }
- abstract class _Paths {
- _Paths._();
- static const SPLASH = '/splash';
- static const HOME = '/home';
- static const NODE = '/node';
- static const WEB = '/web';
- static const ABOUT = '/about';
- static const ACCOUNT = '/account';
- static const MARKDOWN = '/markdown';
- static const SETTING = '/setting';
- static const PRECODE = '/precode';
- static const PRECODE_SENDEMAIL = '/sendemail';
- static const DEVICEAUTH = '/deviceauth';
- static const ROUTINGMODE = '/routingmode';
- static const LANGUAGE = '/language';
- static const FEEDBACK = '/feedback';
- static const SPLITTUNNELING = '/splittunneling';
- static const SPLITTUNNELING_SELECTAPP = '/selectapp';
- static const SIGNUP = '/signup';
- static const FORGOTPWD = '/forgotpwd';
- static const LOGIN = '/login';
- static const SUBSCRIPTION = '/subscription';
- static const MEDIALOCATION = '/medialocation';
- }
|