93 lines
2.3 KiB
Dart
93 lines
2.3 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
// **************************************************************************
|
|
// AutoRouterGenerator
|
|
// **************************************************************************
|
|
|
|
// ignore_for_file: type=lint
|
|
// coverage:ignore-file
|
|
|
|
// ignore_for_file: no_leading_underscores_for_library_prefixes
|
|
import 'package:auto_route/auto_route.dart' as _i5;
|
|
import 'package:xiao_pet_tracker/app_router/app_router.dart' as _i2;
|
|
import 'package:xiao_pet_tracker/home/view/home_page.dart' as _i1;
|
|
import 'package:xiao_pet_tracker/settings/view/settings_page.dart' as _i3;
|
|
import 'package:xiao_pet_tracker/xiao_connector/view/xiao_connector_page.dart'
|
|
as _i4;
|
|
|
|
/// generated route for
|
|
/// [_i1.HomePage]
|
|
class HomeRoute extends _i5.PageRouteInfo<void> {
|
|
const HomeRoute({List<_i5.PageRouteInfo>? children})
|
|
: super(
|
|
HomeRoute.name,
|
|
initialChildren: children,
|
|
);
|
|
|
|
static const String name = 'HomeRoute';
|
|
|
|
static _i5.PageInfo page = _i5.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i1.HomePage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i2.MainPage]
|
|
class MainRoute extends _i5.PageRouteInfo<void> {
|
|
const MainRoute({List<_i5.PageRouteInfo>? children})
|
|
: super(
|
|
MainRoute.name,
|
|
initialChildren: children,
|
|
);
|
|
|
|
static const String name = 'MainRoute';
|
|
|
|
static _i5.PageInfo page = _i5.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i2.MainPage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i3.SettingsPage]
|
|
class SettingsRoute extends _i5.PageRouteInfo<void> {
|
|
const SettingsRoute({List<_i5.PageRouteInfo>? children})
|
|
: super(
|
|
SettingsRoute.name,
|
|
initialChildren: children,
|
|
);
|
|
|
|
static const String name = 'SettingsRoute';
|
|
|
|
static _i5.PageInfo page = _i5.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i3.SettingsPage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i4.XiaoConnectorPage]
|
|
class XiaoConnectorRoute extends _i5.PageRouteInfo<void> {
|
|
const XiaoConnectorRoute({List<_i5.PageRouteInfo>? children})
|
|
: super(
|
|
XiaoConnectorRoute.name,
|
|
initialChildren: children,
|
|
);
|
|
|
|
static const String name = 'XiaoConnectorRoute';
|
|
|
|
static _i5.PageInfo page = _i5.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i4.XiaoConnectorPage();
|
|
},
|
|
);
|
|
}
|