app_routes.dart 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 SIGNIN = _Paths.SIGNIN;
  23. static const SIGNUP = _Paths.SIGNUP;
  24. static const FORGOTPWD = _Paths.FORGOTPWD;
  25. }
  26. abstract class _Paths {
  27. _Paths._();
  28. static const SPLASH = '/splash';
  29. static const HOME = '/home';
  30. static const NODE = '/node';
  31. static const WEB = '/web';
  32. static const ABOUT = '/about';
  33. static const ACCOUNT = '/account';
  34. static const MARKDOWN = '/markdown';
  35. static const SETTING = '/setting';
  36. static const PRECODE = '/precode';
  37. static const PRECODE_SENDEMAIL = '/sendemail';
  38. static const DEVICEAUTH = '/deviceauth';
  39. static const ROUTINGMODE = '/routingmode';
  40. static const LANGUAGE = '/language';
  41. static const FEEDBACK = '/feedback';
  42. static const SPLITTUNNELING = '/splittunneling';
  43. static const SPLITTUNNELING_SELECTAPP = '/selectapp';
  44. static const SIGNIN = '/signin';
  45. static const SIGNUP = '/signup';
  46. static const FORGOTPWD = '/forgotpwd';
  47. }