app_routes.dart 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. part of 'app_pages.dart';
  2. // DO NOT EDIT. This is code generated via package:get_cli/get_cli.dart
  3. abstract class Routes {
  4. Routes._();
  5. static const SPLASH = _Paths.SPLASH;
  6. static const HOME = _Paths.HOME;
  7. static const NODE = _Paths.NODE;
  8. static const WEB = _Paths.WEB;
  9. static const ABOUT = _Paths.ABOUT;
  10. static const ACCOUNT = _Paths.ACCOUNT;
  11. static const MARKDOWN = _Paths.MARKDOWN;
  12. static const SETTING = _Paths.SETTING;
  13. static const PRECODE = _Paths.PRECODE;
  14. static const PRECODE_SENDEMAIL = _Paths.PRECODE + _Paths.PRECODE_SENDEMAIL;
  15. static const DEVICEAUTH = _Paths.DEVICEAUTH;
  16. static const ROUTINGMODE = _Paths.ROUTINGMODE;
  17. static const LANGUAGE = _Paths.LANGUAGE;
  18. static const FEEDBACK = _Paths.FEEDBACK;
  19. static const SPLITTUNNELING = _Paths.SPLITTUNNELING;
  20. static const SPLITTUNNELING_SELECTAPP =
  21. _Paths.SPLITTUNNELING + _Paths.SPLITTUNNELING_SELECTAPP;
  22. static const SIGNUP = _Paths.SIGNUP;
  23. static const FORGOTPWD = _Paths.FORGOTPWD;
  24. static const LOGIN = _Paths.LOGIN;
  25. static const SUBSCRIPTION = _Paths.SUBSCRIPTION;
  26. static const MEDIALOCATION = _Paths.MEDIALOCATION;
  27. }
  28. abstract class _Paths {
  29. _Paths._();
  30. static const SPLASH = '/splash';
  31. static const HOME = '/home';
  32. static const NODE = '/node';
  33. static const WEB = '/web';
  34. static const ABOUT = '/about';
  35. static const ACCOUNT = '/account';
  36. static const MARKDOWN = '/markdown';
  37. static const SETTING = '/setting';
  38. static const PRECODE = '/precode';
  39. static const PRECODE_SENDEMAIL = '/sendemail';
  40. static const DEVICEAUTH = '/deviceauth';
  41. static const ROUTINGMODE = '/routingmode';
  42. static const LANGUAGE = '/language';
  43. static const FEEDBACK = '/feedback';
  44. static const SPLITTUNNELING = '/splittunneling';
  45. static const SPLITTUNNELING_SELECTAPP = '/selectapp';
  46. static const SIGNUP = '/signup';
  47. static const FORGOTPWD = '/forgotpwd';
  48. static const LOGIN = '/login';
  49. static const SUBSCRIPTION = '/subscription';
  50. static const MEDIALOCATION = '/medialocation';
  51. }