profile_page_router.gr.dart 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. SettingPageRoute.name: (routeData) {
  26. return AutoRoutePage<dynamic>(
  27. routeData: routeData,
  28. child: const SettingPage(),
  29. );
  30. },
  31. };
  32. }
  33. /// generated route for
  34. /// [ChangeMobilePage]
  35. class ChangeMobilePageRoute extends PageRouteInfo<void> {
  36. const ChangeMobilePageRoute({List<PageRouteInfo>? children})
  37. : super(
  38. ChangeMobilePageRoute.name,
  39. initialChildren: children,
  40. );
  41. static const String name = 'ChangeMobilePageRoute';
  42. static const PageInfo<void> page = PageInfo<void>(name);
  43. }
  44. /// generated route for
  45. /// [ProfileEditPage]
  46. class ProfileEditPageRoute extends PageRouteInfo<void> {
  47. const ProfileEditPageRoute({List<PageRouteInfo>? children})
  48. : super(
  49. ProfileEditPageRoute.name,
  50. initialChildren: children,
  51. );
  52. static const String name = 'ProfileEditPageRoute';
  53. static const PageInfo<void> page = PageInfo<void>(name);
  54. }
  55. /// generated route for
  56. /// [SettingPage]
  57. class SettingPageRoute extends PageRouteInfo<void> {
  58. const SettingPageRoute({List<PageRouteInfo>? children})
  59. : super(
  60. SettingPageRoute.name,
  61. initialChildren: children,
  62. );
  63. static const String name = 'SettingPageRoute';
  64. static const PageInfo<void> page = PageInfo<void>(name);
  65. }