profile_page_router.gr.dart 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 'profile_page_router.dart';
  8. abstract class _$ProfilePageRouter extends RootStackRouter {
  9. // ignore: unused_element
  10. _$ProfilePageRouter({super.navigatorKey});
  11. @override
  12. final Map<String, PageFactory> pagesMap = {
  13. ProfileEditPageRoute.name: (routeData) {
  14. return AutoRoutePage<dynamic>(
  15. routeData: routeData,
  16. child: const ProfileEditPage(),
  17. );
  18. },
  19. SettingPageRoute.name: (routeData) {
  20. return AutoRoutePage<dynamic>(
  21. routeData: routeData,
  22. child: const SettingPage(),
  23. );
  24. },
  25. };
  26. }
  27. /// generated route for
  28. /// [ProfileEditPage]
  29. class ProfileEditPageRoute extends PageRouteInfo<void> {
  30. const ProfileEditPageRoute({List<PageRouteInfo>? children})
  31. : super(
  32. ProfileEditPageRoute.name,
  33. initialChildren: children,
  34. );
  35. static const String name = 'ProfileEditPageRoute';
  36. static const PageInfo<void> page = PageInfo<void>(name);
  37. }
  38. /// generated route for
  39. /// [SettingPage]
  40. class SettingPageRoute extends PageRouteInfo<void> {
  41. const SettingPageRoute({List<PageRouteInfo>? children})
  42. : super(
  43. SettingPageRoute.name,
  44. initialChildren: children,
  45. );
  46. static const String name = 'SettingPageRoute';
  47. static const PageInfo<void> page = PageInfo<void>(name);
  48. }