community_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 'community_page_router.dart';
  8. abstract class _$CommunityPageRouter extends RootStackRouter {
  9. // ignore: unused_element
  10. _$CommunityPageRouter({super.navigatorKey});
  11. @override
  12. final Map<String, PageFactory> pagesMap = {
  13. CommunityPageRoute.name: (routeData) {
  14. return AutoRoutePage<dynamic>(
  15. routeData: routeData,
  16. child: const CommunityPage(),
  17. );
  18. },
  19. GaragesalePageRoute.name: (routeData) {
  20. return AutoRoutePage<dynamic>(
  21. routeData: routeData,
  22. child: const GaragesalePage(),
  23. );
  24. },
  25. NewsfeedPageRoute.name: (routeData) {
  26. return AutoRoutePage<dynamic>(
  27. routeData: routeData,
  28. child: const NewsfeedPage(),
  29. );
  30. },
  31. };
  32. }
  33. /// generated route for
  34. /// [CommunityPage]
  35. class CommunityPageRoute extends PageRouteInfo<void> {
  36. const CommunityPageRoute({List<PageRouteInfo>? children})
  37. : super(
  38. CommunityPageRoute.name,
  39. initialChildren: children,
  40. );
  41. static const String name = 'CommunityPageRoute';
  42. static const PageInfo<void> page = PageInfo<void>(name);
  43. }
  44. /// generated route for
  45. /// [GaragesalePage]
  46. class GaragesalePageRoute extends PageRouteInfo<void> {
  47. const GaragesalePageRoute({List<PageRouteInfo>? children})
  48. : super(
  49. GaragesalePageRoute.name,
  50. initialChildren: children,
  51. );
  52. static const String name = 'GaragesalePageRoute';
  53. static const PageInfo<void> page = PageInfo<void>(name);
  54. }
  55. /// generated route for
  56. /// [NewsfeedPage]
  57. class NewsfeedPageRoute extends PageRouteInfo<void> {
  58. const NewsfeedPageRoute({List<PageRouteInfo>? children})
  59. : super(
  60. NewsfeedPageRoute.name,
  61. initialChildren: children,
  62. );
  63. static const String name = 'NewsfeedPageRoute';
  64. static const PageInfo<void> page = PageInfo<void>(name);
  65. }