1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- // 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(),
- );
- },
- ProfileEditPageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const ProfileEditPage(),
- );
- },
- 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
- /// [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
- /// [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);
- }
|