100 lines
2.7 KiB
Dart
100 lines
2.7 KiB
Dart
// dart format width=80
|
|
// 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 _i6;
|
|
import 'package:enaklo/presentation/pages/auth/login/login_page.dart' as _i1;
|
|
import 'package:enaklo/presentation/pages/auth/otp/otp_page.dart' as _i3;
|
|
import 'package:enaklo/presentation/pages/auth/register/register_page.dart'
|
|
as _i4;
|
|
import 'package:enaklo/presentation/pages/onboarding/onboarding_page.dart'
|
|
as _i2;
|
|
import 'package:enaklo/presentation/pages/splash/splash_page.dart' as _i5;
|
|
|
|
/// generated route for
|
|
/// [_i1.LoginPage]
|
|
class LoginRoute extends _i6.PageRouteInfo<void> {
|
|
const LoginRoute({List<_i6.PageRouteInfo>? children})
|
|
: super(LoginRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'LoginRoute';
|
|
|
|
static _i6.PageInfo page = _i6.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i1.LoginPage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i2.OnboardingPage]
|
|
class OnboardingRoute extends _i6.PageRouteInfo<void> {
|
|
const OnboardingRoute({List<_i6.PageRouteInfo>? children})
|
|
: super(OnboardingRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'OnboardingRoute';
|
|
|
|
static _i6.PageInfo page = _i6.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i2.OnboardingPage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i3.OtpPage]
|
|
class OtpRoute extends _i6.PageRouteInfo<void> {
|
|
const OtpRoute({List<_i6.PageRouteInfo>? children})
|
|
: super(OtpRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'OtpRoute';
|
|
|
|
static _i6.PageInfo page = _i6.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i3.OtpPage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i4.RegisterPage]
|
|
class RegisterRoute extends _i6.PageRouteInfo<void> {
|
|
const RegisterRoute({List<_i6.PageRouteInfo>? children})
|
|
: super(RegisterRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'RegisterRoute';
|
|
|
|
static _i6.PageInfo page = _i6.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i4.RegisterPage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i5.SplashPage]
|
|
class SplashRoute extends _i6.PageRouteInfo<void> {
|
|
const SplashRoute({List<_i6.PageRouteInfo>? children})
|
|
: super(SplashRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'SplashRoute';
|
|
|
|
static _i6.PageInfo page = _i6.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i5.SplashPage();
|
|
},
|
|
);
|
|
}
|