123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- // **************************************************************************
- // AutoRouterGenerator
- // **************************************************************************
- // ignore_for_file: type=lint
- // coverage:ignore-file
- part of 'profile_page_router.dart';
- abstract class _$ProfilePageRouter extends RootStackRouter {
- // ignore: unused_element
- _$ProfilePageRouter({super.navigatorKey});
- @override
- final Map<String, PageFactory> pagesMap = {
- ChangeMobilePageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const ChangeMobilePage(),
- );
- },
- MyEstatePageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const MyEstatePage(),
- );
- },
- MyHouseholdPageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const MyHouseholdPage(),
- );
- },
- ProfileEditPageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const ProfileEditPage(),
- );
- },
- ResetPasswordPageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const ResetPasswordPage(),
- );
- },
- SettingPageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const SettingPage(),
- );
- },
- };
- }
- /// generated route for
- /// [ChangeMobilePage]
- class ChangeMobilePageRoute extends PageRouteInfo<void> {
- const ChangeMobilePageRoute({List<PageRouteInfo>? children})
- : super(
- ChangeMobilePageRoute.name,
- initialChildren: children,
- );
- static const String name = 'ChangeMobilePageRoute';
- static const PageInfo<void> page = PageInfo<void>(name);
- }
- /// generated route for
- /// [MyEstatePage]
- class MyEstatePageRoute extends PageRouteInfo<void> {
- const MyEstatePageRoute({List<PageRouteInfo>? children})
- : super(
- MyEstatePageRoute.name,
- initialChildren: children,
- );
- static const String name = 'MyEstatePageRoute';
- static const PageInfo<void> page = PageInfo<void>(name);
- }
- /// generated route for
- /// [MyHouseholdPage]
- class MyHouseholdPageRoute extends PageRouteInfo<void> {
- const MyHouseholdPageRoute({List<PageRouteInfo>? children})
- : super(
- MyHouseholdPageRoute.name,
- initialChildren: children,
- );
- static const String name = 'MyHouseholdPageRoute';
- static const PageInfo<void> page = PageInfo<void>(name);
- }
- /// generated route for
- /// [ProfileEditPage]
- class ProfileEditPageRoute extends PageRouteInfo<void> {
- const ProfileEditPageRoute({List<PageRouteInfo>? children})
- : super(
- ProfileEditPageRoute.name,
- initialChildren: children,
- );
- static const String name = 'ProfileEditPageRoute';
- static const PageInfo<void> page = PageInfo<void>(name);
- }
- /// generated route for
- /// [ResetPasswordPage]
- class ResetPasswordPageRoute extends PageRouteInfo<void> {
- const ResetPasswordPageRoute({List<PageRouteInfo>? children})
- : super(
- ResetPasswordPageRoute.name,
- initialChildren: children,
- );
- static const String name = 'ResetPasswordPageRoute';
- static const PageInfo<void> page = PageInfo<void>(name);
- }
- /// generated route for
- /// [SettingPage]
- class SettingPageRoute extends PageRouteInfo<void> {
- const SettingPageRoute({List<PageRouteInfo>? children})
- : super(
- SettingPageRoute.name,
- initialChildren: children,
- );
- static const String name = 'SettingPageRoute';
- static const PageInfo<void> page = PageInfo<void>(name);
- }
|