feat: order detail
This commit is contained in:
@@ -47,5 +47,8 @@ class AppRouter extends RootStackRouter {
|
||||
|
||||
// Notification
|
||||
AutoRoute(page: NotificationRoute.page),
|
||||
|
||||
// Order
|
||||
AutoRoute(page: OrderDetailRoute.page),
|
||||
];
|
||||
}
|
||||
|
||||
@@ -9,16 +9,16 @@
|
||||
// coverage:ignore-file
|
||||
|
||||
// ignore_for_file: no_leading_underscores_for_library_prefixes
|
||||
import 'package:auto_route/auto_route.dart' as _i22;
|
||||
import 'package:auto_route/auto_route.dart' as _i23;
|
||||
import 'package:enaklo/presentation/pages/auth/create_password/create_password_page.dart'
|
||||
as _i1;
|
||||
import 'package:enaklo/presentation/pages/auth/login/login_page.dart' as _i5;
|
||||
import 'package:enaklo/presentation/pages/auth/otp/otp_page.dart' as _i12;
|
||||
import 'package:enaklo/presentation/pages/auth/otp/otp_page.dart' as _i13;
|
||||
import 'package:enaklo/presentation/pages/auth/password/password_page.dart'
|
||||
as _i13;
|
||||
import 'package:enaklo/presentation/pages/auth/pin/pin_page.dart' as _i14;
|
||||
as _i14;
|
||||
import 'package:enaklo/presentation/pages/auth/pin/pin_page.dart' as _i15;
|
||||
import 'package:enaklo/presentation/pages/auth/register/register_page.dart'
|
||||
as _i17;
|
||||
as _i18;
|
||||
import 'package:enaklo/presentation/pages/draw/draw_page.dart' as _i3;
|
||||
import 'package:enaklo/presentation/pages/draw/pages/draw_detail/draw_detail_page.dart'
|
||||
as _i2;
|
||||
@@ -26,11 +26,11 @@ import 'package:enaklo/presentation/pages/main/main_page.dart' as _i6;
|
||||
import 'package:enaklo/presentation/pages/main/pages/home/home_page.dart'
|
||||
as _i4;
|
||||
import 'package:enaklo/presentation/pages/main/pages/order/order_page.dart'
|
||||
as _i11;
|
||||
as _i12;
|
||||
import 'package:enaklo/presentation/pages/main/pages/profile/profile_page.dart'
|
||||
as _i16;
|
||||
as _i17;
|
||||
import 'package:enaklo/presentation/pages/main/pages/voucher/voucher_page.dart'
|
||||
as _i21;
|
||||
as _i22;
|
||||
import 'package:enaklo/presentation/pages/merchant/merchant_page.dart' as _i8;
|
||||
import 'package:enaklo/presentation/pages/merchant/pages/merchant_detail/merchant_detail_page.dart'
|
||||
as _i7;
|
||||
@@ -38,23 +38,25 @@ import 'package:enaklo/presentation/pages/notification/notification_page.dart'
|
||||
as _i9;
|
||||
import 'package:enaklo/presentation/pages/onboarding/onboarding_page.dart'
|
||||
as _i10;
|
||||
import 'package:enaklo/presentation/pages/order/order_detail/order_detail_page.dart'
|
||||
as _i11;
|
||||
import 'package:enaklo/presentation/pages/reward/pages/product_redeem/product_redeem_page.dart'
|
||||
as _i15;
|
||||
import 'package:enaklo/presentation/pages/reward/reward_page.dart' as _i18;
|
||||
import 'package:enaklo/presentation/pages/splash/splash_page.dart' as _i19;
|
||||
as _i16;
|
||||
import 'package:enaklo/presentation/pages/reward/reward_page.dart' as _i19;
|
||||
import 'package:enaklo/presentation/pages/splash/splash_page.dart' as _i20;
|
||||
import 'package:enaklo/presentation/pages/voucher/voucher_detail/voucher_detail_page.dart'
|
||||
as _i20;
|
||||
import 'package:flutter/material.dart' as _i23;
|
||||
as _i21;
|
||||
import 'package:flutter/material.dart' as _i24;
|
||||
|
||||
/// generated route for
|
||||
/// [_i1.CreatePasswordPage]
|
||||
class CreatePasswordRoute extends _i22.PageRouteInfo<void> {
|
||||
const CreatePasswordRoute({List<_i22.PageRouteInfo>? children})
|
||||
class CreatePasswordRoute extends _i23.PageRouteInfo<void> {
|
||||
const CreatePasswordRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(CreatePasswordRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'CreatePasswordRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i1.CreatePasswordPage();
|
||||
@@ -64,11 +66,11 @@ class CreatePasswordRoute extends _i22.PageRouteInfo<void> {
|
||||
|
||||
/// generated route for
|
||||
/// [_i2.DrawDetailPage]
|
||||
class DrawDetailRoute extends _i22.PageRouteInfo<DrawDetailRouteArgs> {
|
||||
class DrawDetailRoute extends _i23.PageRouteInfo<DrawDetailRouteArgs> {
|
||||
DrawDetailRoute({
|
||||
_i23.Key? key,
|
||||
_i24.Key? key,
|
||||
required _i3.DrawEvent drawEvent,
|
||||
List<_i22.PageRouteInfo>? children,
|
||||
List<_i23.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
DrawDetailRoute.name,
|
||||
args: DrawDetailRouteArgs(key: key, drawEvent: drawEvent),
|
||||
@@ -77,7 +79,7 @@ class DrawDetailRoute extends _i22.PageRouteInfo<DrawDetailRouteArgs> {
|
||||
|
||||
static const String name = 'DrawDetailRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final args = data.argsAs<DrawDetailRouteArgs>();
|
||||
@@ -89,7 +91,7 @@ class DrawDetailRoute extends _i22.PageRouteInfo<DrawDetailRouteArgs> {
|
||||
class DrawDetailRouteArgs {
|
||||
const DrawDetailRouteArgs({this.key, required this.drawEvent});
|
||||
|
||||
final _i23.Key? key;
|
||||
final _i24.Key? key;
|
||||
|
||||
final _i3.DrawEvent drawEvent;
|
||||
|
||||
@@ -101,13 +103,13 @@ class DrawDetailRouteArgs {
|
||||
|
||||
/// generated route for
|
||||
/// [_i3.DrawPage]
|
||||
class DrawRoute extends _i22.PageRouteInfo<void> {
|
||||
const DrawRoute({List<_i22.PageRouteInfo>? children})
|
||||
class DrawRoute extends _i23.PageRouteInfo<void> {
|
||||
const DrawRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(DrawRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'DrawRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i3.DrawPage();
|
||||
@@ -117,13 +119,13 @@ class DrawRoute extends _i22.PageRouteInfo<void> {
|
||||
|
||||
/// generated route for
|
||||
/// [_i4.HomePage]
|
||||
class HomeRoute extends _i22.PageRouteInfo<void> {
|
||||
const HomeRoute({List<_i22.PageRouteInfo>? children})
|
||||
class HomeRoute extends _i23.PageRouteInfo<void> {
|
||||
const HomeRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(HomeRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'HomeRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i4.HomePage();
|
||||
@@ -133,13 +135,13 @@ class HomeRoute extends _i22.PageRouteInfo<void> {
|
||||
|
||||
/// generated route for
|
||||
/// [_i5.LoginPage]
|
||||
class LoginRoute extends _i22.PageRouteInfo<void> {
|
||||
const LoginRoute({List<_i22.PageRouteInfo>? children})
|
||||
class LoginRoute extends _i23.PageRouteInfo<void> {
|
||||
const LoginRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(LoginRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'LoginRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i5.LoginPage();
|
||||
@@ -149,13 +151,13 @@ class LoginRoute extends _i22.PageRouteInfo<void> {
|
||||
|
||||
/// generated route for
|
||||
/// [_i6.MainPage]
|
||||
class MainRoute extends _i22.PageRouteInfo<void> {
|
||||
const MainRoute({List<_i22.PageRouteInfo>? children})
|
||||
class MainRoute extends _i23.PageRouteInfo<void> {
|
||||
const MainRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(MainRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'MainRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i6.MainPage();
|
||||
@@ -165,11 +167,11 @@ class MainRoute extends _i22.PageRouteInfo<void> {
|
||||
|
||||
/// generated route for
|
||||
/// [_i7.MerchantDetailPage]
|
||||
class MerchantDetailRoute extends _i22.PageRouteInfo<MerchantDetailRouteArgs> {
|
||||
class MerchantDetailRoute extends _i23.PageRouteInfo<MerchantDetailRouteArgs> {
|
||||
MerchantDetailRoute({
|
||||
_i23.Key? key,
|
||||
_i24.Key? key,
|
||||
required _i8.MerchantModel merchant,
|
||||
List<_i22.PageRouteInfo>? children,
|
||||
List<_i23.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
MerchantDetailRoute.name,
|
||||
args: MerchantDetailRouteArgs(key: key, merchant: merchant),
|
||||
@@ -178,7 +180,7 @@ class MerchantDetailRoute extends _i22.PageRouteInfo<MerchantDetailRouteArgs> {
|
||||
|
||||
static const String name = 'MerchantDetailRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final args = data.argsAs<MerchantDetailRouteArgs>();
|
||||
@@ -190,7 +192,7 @@ class MerchantDetailRoute extends _i22.PageRouteInfo<MerchantDetailRouteArgs> {
|
||||
class MerchantDetailRouteArgs {
|
||||
const MerchantDetailRouteArgs({this.key, required this.merchant});
|
||||
|
||||
final _i23.Key? key;
|
||||
final _i24.Key? key;
|
||||
|
||||
final _i8.MerchantModel merchant;
|
||||
|
||||
@@ -202,13 +204,13 @@ class MerchantDetailRouteArgs {
|
||||
|
||||
/// generated route for
|
||||
/// [_i8.MerchantPage]
|
||||
class MerchantRoute extends _i22.PageRouteInfo<void> {
|
||||
const MerchantRoute({List<_i22.PageRouteInfo>? children})
|
||||
class MerchantRoute extends _i23.PageRouteInfo<void> {
|
||||
const MerchantRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(MerchantRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'MerchantRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i8.MerchantPage();
|
||||
@@ -218,13 +220,13 @@ class MerchantRoute extends _i22.PageRouteInfo<void> {
|
||||
|
||||
/// generated route for
|
||||
/// [_i9.NotificationPage]
|
||||
class NotificationRoute extends _i22.PageRouteInfo<void> {
|
||||
const NotificationRoute({List<_i22.PageRouteInfo>? children})
|
||||
class NotificationRoute extends _i23.PageRouteInfo<void> {
|
||||
const NotificationRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(NotificationRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'NotificationRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i9.NotificationPage();
|
||||
@@ -234,13 +236,13 @@ class NotificationRoute extends _i22.PageRouteInfo<void> {
|
||||
|
||||
/// generated route for
|
||||
/// [_i10.OnboardingPage]
|
||||
class OnboardingRoute extends _i22.PageRouteInfo<void> {
|
||||
const OnboardingRoute({List<_i22.PageRouteInfo>? children})
|
||||
class OnboardingRoute extends _i23.PageRouteInfo<void> {
|
||||
const OnboardingRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(OnboardingRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'OnboardingRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i10.OnboardingPage();
|
||||
@@ -249,61 +251,98 @@ class OnboardingRoute extends _i22.PageRouteInfo<void> {
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i11.OrderPage]
|
||||
class OrderRoute extends _i22.PageRouteInfo<void> {
|
||||
const OrderRoute({List<_i22.PageRouteInfo>? children})
|
||||
/// [_i11.OrderDetailPage]
|
||||
class OrderDetailRoute extends _i23.PageRouteInfo<OrderDetailRouteArgs> {
|
||||
OrderDetailRoute({
|
||||
_i24.Key? key,
|
||||
required _i12.Order order,
|
||||
List<_i23.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
OrderDetailRoute.name,
|
||||
args: OrderDetailRouteArgs(key: key, order: order),
|
||||
initialChildren: children,
|
||||
);
|
||||
|
||||
static const String name = 'OrderDetailRoute';
|
||||
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final args = data.argsAs<OrderDetailRouteArgs>();
|
||||
return _i11.OrderDetailPage(key: args.key, order: args.order);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
class OrderDetailRouteArgs {
|
||||
const OrderDetailRouteArgs({this.key, required this.order});
|
||||
|
||||
final _i24.Key? key;
|
||||
|
||||
final _i12.Order order;
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'OrderDetailRouteArgs{key: $key, order: $order}';
|
||||
}
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i12.OrderPage]
|
||||
class OrderRoute extends _i23.PageRouteInfo<void> {
|
||||
const OrderRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(OrderRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'OrderRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i11.OrderPage();
|
||||
return const _i12.OrderPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i12.OtpPage]
|
||||
class OtpRoute extends _i22.PageRouteInfo<void> {
|
||||
const OtpRoute({List<_i22.PageRouteInfo>? children})
|
||||
/// [_i13.OtpPage]
|
||||
class OtpRoute extends _i23.PageRouteInfo<void> {
|
||||
const OtpRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(OtpRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'OtpRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i12.OtpPage();
|
||||
return const _i13.OtpPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i13.PasswordPage]
|
||||
class PasswordRoute extends _i22.PageRouteInfo<void> {
|
||||
const PasswordRoute({List<_i22.PageRouteInfo>? children})
|
||||
/// [_i14.PasswordPage]
|
||||
class PasswordRoute extends _i23.PageRouteInfo<void> {
|
||||
const PasswordRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(PasswordRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'PasswordRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i13.PasswordPage();
|
||||
return const _i14.PasswordPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i14.PinPage]
|
||||
class PinRoute extends _i22.PageRouteInfo<PinRouteArgs> {
|
||||
/// [_i15.PinPage]
|
||||
class PinRoute extends _i23.PageRouteInfo<PinRouteArgs> {
|
||||
PinRoute({
|
||||
_i23.Key? key,
|
||||
_i24.Key? key,
|
||||
bool isCreatePin = true,
|
||||
String? title,
|
||||
List<_i22.PageRouteInfo>? children,
|
||||
List<_i23.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
PinRoute.name,
|
||||
args: PinRouteArgs(key: key, isCreatePin: isCreatePin, title: title),
|
||||
@@ -312,13 +351,13 @@ class PinRoute extends _i22.PageRouteInfo<PinRouteArgs> {
|
||||
|
||||
static const String name = 'PinRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final args = data.argsAs<PinRouteArgs>(
|
||||
orElse: () => const PinRouteArgs(),
|
||||
);
|
||||
return _i14.PinPage(
|
||||
return _i15.PinPage(
|
||||
key: args.key,
|
||||
isCreatePin: args.isCreatePin,
|
||||
title: args.title,
|
||||
@@ -330,7 +369,7 @@ class PinRoute extends _i22.PageRouteInfo<PinRouteArgs> {
|
||||
class PinRouteArgs {
|
||||
const PinRouteArgs({this.key, this.isCreatePin = true, this.title});
|
||||
|
||||
final _i23.Key? key;
|
||||
final _i24.Key? key;
|
||||
|
||||
final bool isCreatePin;
|
||||
|
||||
@@ -343,14 +382,14 @@ class PinRouteArgs {
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i15.ProductRedeemPage]
|
||||
class ProductRedeemRoute extends _i22.PageRouteInfo<ProductRedeemRouteArgs> {
|
||||
/// [_i16.ProductRedeemPage]
|
||||
class ProductRedeemRoute extends _i23.PageRouteInfo<ProductRedeemRouteArgs> {
|
||||
ProductRedeemRoute({
|
||||
_i23.Key? key,
|
||||
required _i18.Product product,
|
||||
required _i18.Merchant merchant,
|
||||
required _i18.PointCard pointCard,
|
||||
List<_i22.PageRouteInfo>? children,
|
||||
_i24.Key? key,
|
||||
required _i19.Product product,
|
||||
required _i19.Merchant merchant,
|
||||
required _i19.PointCard pointCard,
|
||||
List<_i23.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
ProductRedeemRoute.name,
|
||||
args: ProductRedeemRouteArgs(
|
||||
@@ -364,11 +403,11 @@ class ProductRedeemRoute extends _i22.PageRouteInfo<ProductRedeemRouteArgs> {
|
||||
|
||||
static const String name = 'ProductRedeemRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final args = data.argsAs<ProductRedeemRouteArgs>();
|
||||
return _i15.ProductRedeemPage(
|
||||
return _i16.ProductRedeemPage(
|
||||
key: args.key,
|
||||
product: args.product,
|
||||
merchant: args.merchant,
|
||||
@@ -386,13 +425,13 @@ class ProductRedeemRouteArgs {
|
||||
required this.pointCard,
|
||||
});
|
||||
|
||||
final _i23.Key? key;
|
||||
final _i24.Key? key;
|
||||
|
||||
final _i18.Product product;
|
||||
final _i19.Product product;
|
||||
|
||||
final _i18.Merchant merchant;
|
||||
final _i19.Merchant merchant;
|
||||
|
||||
final _i18.PointCard pointCard;
|
||||
final _i19.PointCard pointCard;
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
@@ -401,97 +440,97 @@ class ProductRedeemRouteArgs {
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i16.ProfilePage]
|
||||
class ProfileRoute extends _i22.PageRouteInfo<void> {
|
||||
const ProfileRoute({List<_i22.PageRouteInfo>? children})
|
||||
/// [_i17.ProfilePage]
|
||||
class ProfileRoute extends _i23.PageRouteInfo<void> {
|
||||
const ProfileRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(ProfileRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'ProfileRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i16.ProfilePage();
|
||||
return const _i17.ProfilePage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i17.RegisterPage]
|
||||
class RegisterRoute extends _i22.PageRouteInfo<void> {
|
||||
const RegisterRoute({List<_i22.PageRouteInfo>? children})
|
||||
/// [_i18.RegisterPage]
|
||||
class RegisterRoute extends _i23.PageRouteInfo<void> {
|
||||
const RegisterRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(RegisterRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'RegisterRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i17.RegisterPage();
|
||||
return const _i18.RegisterPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i18.RewardPage]
|
||||
class RewardRoute extends _i22.PageRouteInfo<void> {
|
||||
const RewardRoute({List<_i22.PageRouteInfo>? children})
|
||||
/// [_i19.RewardPage]
|
||||
class RewardRoute extends _i23.PageRouteInfo<void> {
|
||||
const RewardRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(RewardRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'RewardRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i18.RewardPage();
|
||||
return const _i19.RewardPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i19.SplashPage]
|
||||
class SplashRoute extends _i22.PageRouteInfo<void> {
|
||||
const SplashRoute({List<_i22.PageRouteInfo>? children})
|
||||
/// [_i20.SplashPage]
|
||||
class SplashRoute extends _i23.PageRouteInfo<void> {
|
||||
const SplashRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(SplashRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'SplashRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i19.SplashPage();
|
||||
return const _i20.SplashPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i20.VoucherDetailPage]
|
||||
class VoucherDetailRoute extends _i22.PageRouteInfo<void> {
|
||||
const VoucherDetailRoute({List<_i22.PageRouteInfo>? children})
|
||||
/// [_i21.VoucherDetailPage]
|
||||
class VoucherDetailRoute extends _i23.PageRouteInfo<void> {
|
||||
const VoucherDetailRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(VoucherDetailRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'VoucherDetailRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i20.VoucherDetailPage();
|
||||
return const _i21.VoucherDetailPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i21.VoucherPage]
|
||||
class VoucherRoute extends _i22.PageRouteInfo<void> {
|
||||
const VoucherRoute({List<_i22.PageRouteInfo>? children})
|
||||
/// [_i22.VoucherPage]
|
||||
class VoucherRoute extends _i23.PageRouteInfo<void> {
|
||||
const VoucherRoute({List<_i23.PageRouteInfo>? children})
|
||||
: super(VoucherRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'VoucherRoute';
|
||||
|
||||
static _i22.PageInfo page = _i22.PageInfo(
|
||||
static _i23.PageInfo page = _i23.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i21.VoucherPage();
|
||||
return const _i22.VoucherPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user