profile_page_router.gr.dart 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. MyEstatePageRoute.name: (routeData) {
  20. return AutoRoutePage<dynamic>(
  21. routeData: routeData,
  22. child: const MyEstatePage(),
  23. );
  24. },
  25. MyHouseholdPageRoute.name: (routeData) {
  26. return AutoRoutePage<dynamic>(
  27. routeData: routeData,
  28. child: const MyHouseholdPage(),
  29. );
  30. },
  31. ProfileEditPageRoute.name: (routeData) {
  32. return AutoRoutePage<dynamic>(
  33. routeData: routeData,
  34. child: const ProfileEditPage(),
  35. );
  36. },
  37. ResetPasswordPageRoute.name: (routeData) {
  38. return AutoRoutePage<dynamic>(
  39. routeData: routeData,
  40. child: const ResetPasswordPage(),
  41. );
  42. },
  43. SettingPageRoute.name: (routeData) {
  44. return AutoRoutePage<dynamic>(
  45. routeData: routeData,
  46. child: const SettingPage(),
  47. );
  48. },
  49. };
  50. }
  51. /// generated route for
  52. /// [ChangeMobilePage]
  53. class ChangeMobilePageRoute extends PageRouteInfo<void> {
  54. const ChangeMobilePageRoute({List<PageRouteInfo>? children})
  55. : super(
  56. ChangeMobilePageRoute.name,
  57. initialChildren: children,
  58. );
  59. static const String name = 'ChangeMobilePageRoute';
  60. static const PageInfo<void> page = PageInfo<void>(name);
  61. }
  62. /// generated route for
  63. /// [MyEstatePage]
  64. class MyEstatePageRoute extends PageRouteInfo<void> {
  65. const MyEstatePageRoute({List<PageRouteInfo>? children})
  66. : super(
  67. MyEstatePageRoute.name,
  68. initialChildren: children,
  69. );
  70. static const String name = 'MyEstatePageRoute';
  71. static const PageInfo<void> page = PageInfo<void>(name);
  72. }
  73. /// generated route for
  74. /// [MyHouseholdPage]
  75. class MyHouseholdPageRoute extends PageRouteInfo<void> {
  76. const MyHouseholdPageRoute({List<PageRouteInfo>? children})
  77. : super(
  78. MyHouseholdPageRoute.name,
  79. initialChildren: children,
  80. );
  81. static const String name = 'MyHouseholdPageRoute';
  82. static const PageInfo<void> page = PageInfo<void>(name);
  83. }
  84. /// generated route for
  85. /// [ProfileEditPage]
  86. class ProfileEditPageRoute extends PageRouteInfo<void> {
  87. const ProfileEditPageRoute({List<PageRouteInfo>? children})
  88. : super(
  89. ProfileEditPageRoute.name,
  90. initialChildren: children,
  91. );
  92. static const String name = 'ProfileEditPageRoute';
  93. static const PageInfo<void> page = PageInfo<void>(name);
  94. }
  95. /// generated route for
  96. /// [ResetPasswordPage]
  97. class ResetPasswordPageRoute extends PageRouteInfo<void> {
  98. const ResetPasswordPageRoute({List<PageRouteInfo>? children})
  99. : super(
  100. ResetPasswordPageRoute.name,
  101. initialChildren: children,
  102. );
  103. static const String name = 'ResetPasswordPageRoute';
  104. static const PageInfo<void> page = PageInfo<void>(name);
  105. }
  106. /// generated route for
  107. /// [SettingPage]
  108. class SettingPageRoute extends PageRouteInfo<void> {
  109. const SettingPageRoute({List<PageRouteInfo>? children})
  110. : super(
  111. SettingPageRoute.name,
  112. initialChildren: children,
  113. );
  114. static const String name = 'SettingPageRoute';
  115. static const PageInfo<void> page = PageInfo<void>(name);
  116. }