123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- // 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 = {
- 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
- /// [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);
- }
|