profile_page_router.gr.dart 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. // **************************************************************************
  3. // AutoRouterGenerator
  4. // **************************************************************************
  5. // ignore_for_file: type=lint
  6. // coverage:ignore-file
  7. part of 'profile_page_router.dart';
  8. abstract class _$ProfilePageRouter extends RootStackRouter {
  9. // ignore: unused_element
  10. _$ProfilePageRouter({super.navigatorKey});
  11. @override
  12. final Map<String, PageFactory> pagesMap = {
  13. ChangeMobilePageRoute.name: (routeData) {
  14. return AutoRoutePage<dynamic>(
  15. routeData: routeData,
  16. child: const ChangeMobilePage(),
  17. );
  18. },
  19. ProfileEditPageRoute.name: (routeData) {
  20. return AutoRoutePage<dynamic>(
  21. routeData: routeData,
  22. child: const ProfileEditPage(),
  23. );
  24. },
  25. ResetPasswordPageRoute.name: (routeData) {
  26. return AutoRoutePage<dynamic>(
  27. routeData: routeData,
  28. child: const ResetPasswordPage(),
  29. );
  30. },
  31. SettingPageRoute.name: (routeData) {
  32. return AutoRoutePage<dynamic>(
  33. routeData: routeData,
  34. child: const SettingPage(),
  35. );
  36. },
  37. };
  38. }
  39. /// generated route for
  40. /// [ChangeMobilePage]
  41. class ChangeMobilePageRoute extends PageRouteInfo<void> {
  42. const ChangeMobilePageRoute({List<PageRouteInfo>? children})
  43. : super(
  44. ChangeMobilePageRoute.name,
  45. initialChildren: children,
  46. );
  47. static const String name = 'ChangeMobilePageRoute';
  48. static const PageInfo<void> page = PageInfo<void>(name);
  49. }
  50. /// generated route for
  51. /// [ProfileEditPage]
  52. class ProfileEditPageRoute extends PageRouteInfo<void> {
  53. const ProfileEditPageRoute({List<PageRouteInfo>? children})
  54. : super(
  55. ProfileEditPageRoute.name,
  56. initialChildren: children,
  57. );
  58. static const String name = 'ProfileEditPageRoute';
  59. static const PageInfo<void> page = PageInfo<void>(name);
  60. }
  61. /// generated route for
  62. /// [ResetPasswordPage]
  63. class ResetPasswordPageRoute extends PageRouteInfo<void> {
  64. const ResetPasswordPageRoute({List<PageRouteInfo>? children})
  65. : super(
  66. ResetPasswordPageRoute.name,
  67. initialChildren: children,
  68. );
  69. static const String name = 'ResetPasswordPageRoute';
  70. static const PageInfo<void> page = PageInfo<void>(name);
  71. }
  72. /// generated route for
  73. /// [SettingPage]
  74. class SettingPageRoute extends PageRouteInfo<void> {
  75. const SettingPageRoute({List<PageRouteInfo>? children})
  76. : super(
  77. SettingPageRoute.name,
  78. initialChildren: children,
  79. );
  80. static const String name = 'SettingPageRoute';
  81. static const PageInfo<void> page = PageInfo<void>(name);
  82. }