1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- // **************************************************************************
- // AutoRouterGenerator
- // **************************************************************************
- // ignore_for_file: type=lint
- // coverage:ignore-file
- part of 'community_page_router.dart';
- abstract class _$CommunityPageRouter extends RootStackRouter {
- // ignore: unused_element
- _$CommunityPageRouter({super.navigatorKey});
- @override
- final Map<String, PageFactory> pagesMap = {
- CommunityPageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const CommunityPage(),
- );
- },
- GaragesalePageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const GaragesalePage(),
- );
- },
- NewsfeedPageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const NewsfeedPage(),
- );
- },
- };
- }
- /// generated route for
- /// [CommunityPage]
- class CommunityPageRoute extends PageRouteInfo<void> {
- const CommunityPageRoute({List<PageRouteInfo>? children})
- : super(
- CommunityPageRoute.name,
- initialChildren: children,
- );
- static const String name = 'CommunityPageRoute';
- static const PageInfo<void> page = PageInfo<void>(name);
- }
- /// generated route for
- /// [GaragesalePage]
- class GaragesalePageRoute extends PageRouteInfo<void> {
- const GaragesalePageRoute({List<PageRouteInfo>? children})
- : super(
- GaragesalePageRoute.name,
- initialChildren: children,
- );
- static const String name = 'GaragesalePageRoute';
- static const PageInfo<void> page = PageInfo<void>(name);
- }
- /// generated route for
- /// [NewsfeedPage]
- class NewsfeedPageRoute extends PageRouteInfo<void> {
- const NewsfeedPageRoute({List<PageRouteInfo>? children})
- : super(
- NewsfeedPageRoute.name,
- initialChildren: children,
- );
- static const String name = 'NewsfeedPageRoute';
- static const PageInfo<void> page = PageInfo<void>(name);
- }
|