440 lines
12 KiB
Dart
440 lines
12 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:apskel_owner_flutter/domain/order/order.dart' as _i22;
|
|
import 'package:apskel_owner_flutter/presentation/pages/auth/login/login_page.dart'
|
|
as _i8;
|
|
import 'package:apskel_owner_flutter/presentation/pages/customer/customer_page.dart'
|
|
as _i1;
|
|
import 'package:apskel_owner_flutter/presentation/pages/error/error_page.dart'
|
|
as _i3;
|
|
import 'package:apskel_owner_flutter/presentation/pages/finance/finance_page.dart'
|
|
as _i4;
|
|
import 'package:apskel_owner_flutter/presentation/pages/form/daily_task_form_page.dart'
|
|
as _i2;
|
|
import 'package:apskel_owner_flutter/presentation/pages/home/home_page.dart'
|
|
as _i5;
|
|
import 'package:apskel_owner_flutter/presentation/pages/inventory/inventory_page.dart'
|
|
as _i6;
|
|
import 'package:apskel_owner_flutter/presentation/pages/language/language_page.dart'
|
|
as _i7;
|
|
import 'package:apskel_owner_flutter/presentation/pages/main/main_page.dart'
|
|
as _i9;
|
|
import 'package:apskel_owner_flutter/presentation/pages/order/order_detail/order_detail_page.dart'
|
|
as _i10;
|
|
import 'package:apskel_owner_flutter/presentation/pages/order/order_list/order_page.dart'
|
|
as _i11;
|
|
import 'package:apskel_owner_flutter/presentation/pages/product/product_analytic/product_analytic_page.dart'
|
|
as _i12;
|
|
import 'package:apskel_owner_flutter/presentation/pages/product/product_list/product_page.dart'
|
|
as _i13;
|
|
import 'package:apskel_owner_flutter/presentation/pages/profile/profile_page.dart'
|
|
as _i14;
|
|
import 'package:apskel_owner_flutter/presentation/pages/purchase/purchase_page.dart'
|
|
as _i15;
|
|
import 'package:apskel_owner_flutter/presentation/pages/report/report_page.dart'
|
|
as _i16;
|
|
import 'package:apskel_owner_flutter/presentation/pages/sales/sales_page.dart'
|
|
as _i17;
|
|
import 'package:apskel_owner_flutter/presentation/pages/schedule/schedule_page.dart'
|
|
as _i18;
|
|
import 'package:apskel_owner_flutter/presentation/pages/splash/splash_page.dart'
|
|
as _i19;
|
|
import 'package:auto_route/auto_route.dart' as _i20;
|
|
import 'package:flutter/material.dart' as _i21;
|
|
|
|
/// generated route for
|
|
/// [_i1.CustomerPage]
|
|
class CustomerRoute extends _i20.PageRouteInfo<void> {
|
|
const CustomerRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(CustomerRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'CustomerRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return _i20.WrappedRoute(child: const _i1.CustomerPage());
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i2.DailyTasksFormPage]
|
|
class DailyTasksFormRoute extends _i20.PageRouteInfo<void> {
|
|
const DailyTasksFormRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(DailyTasksFormRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'DailyTasksFormRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i2.DailyTasksFormPage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i3.ErrorPage]
|
|
class ErrorRoute extends _i20.PageRouteInfo<ErrorRouteArgs> {
|
|
ErrorRoute({
|
|
_i21.Key? key,
|
|
String? title,
|
|
String? message,
|
|
_i21.VoidCallback? onRetry,
|
|
_i21.VoidCallback? onBack,
|
|
String? errorCode,
|
|
_i21.IconData? errorIcon,
|
|
List<_i20.PageRouteInfo>? children,
|
|
}) : super(
|
|
ErrorRoute.name,
|
|
args: ErrorRouteArgs(
|
|
key: key,
|
|
title: title,
|
|
message: message,
|
|
onRetry: onRetry,
|
|
onBack: onBack,
|
|
errorCode: errorCode,
|
|
errorIcon: errorIcon,
|
|
),
|
|
initialChildren: children,
|
|
);
|
|
|
|
static const String name = 'ErrorRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
final args = data.argsAs<ErrorRouteArgs>(
|
|
orElse: () => const ErrorRouteArgs(),
|
|
);
|
|
return _i3.ErrorPage(
|
|
key: args.key,
|
|
title: args.title,
|
|
message: args.message,
|
|
onRetry: args.onRetry,
|
|
onBack: args.onBack,
|
|
errorCode: args.errorCode,
|
|
errorIcon: args.errorIcon,
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
class ErrorRouteArgs {
|
|
const ErrorRouteArgs({
|
|
this.key,
|
|
this.title,
|
|
this.message,
|
|
this.onRetry,
|
|
this.onBack,
|
|
this.errorCode,
|
|
this.errorIcon,
|
|
});
|
|
|
|
final _i21.Key? key;
|
|
|
|
final String? title;
|
|
|
|
final String? message;
|
|
|
|
final _i21.VoidCallback? onRetry;
|
|
|
|
final _i21.VoidCallback? onBack;
|
|
|
|
final String? errorCode;
|
|
|
|
final _i21.IconData? errorIcon;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'ErrorRouteArgs{key: $key, title: $title, message: $message, onRetry: $onRetry, onBack: $onBack, errorCode: $errorCode, errorIcon: $errorIcon}';
|
|
}
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i4.FinancePage]
|
|
class FinanceRoute extends _i20.PageRouteInfo<void> {
|
|
const FinanceRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(FinanceRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'FinanceRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return _i20.WrappedRoute(child: const _i4.FinancePage());
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i5.HomePage]
|
|
class HomeRoute extends _i20.PageRouteInfo<void> {
|
|
const HomeRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(HomeRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'HomeRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i5.HomePage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i6.InventoryPage]
|
|
class InventoryRoute extends _i20.PageRouteInfo<void> {
|
|
const InventoryRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(InventoryRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'InventoryRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return _i20.WrappedRoute(child: const _i6.InventoryPage());
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i7.LanguagePage]
|
|
class LanguageRoute extends _i20.PageRouteInfo<void> {
|
|
const LanguageRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(LanguageRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'LanguageRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i7.LanguagePage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i8.LoginPage]
|
|
class LoginRoute extends _i20.PageRouteInfo<void> {
|
|
const LoginRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(LoginRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'LoginRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return _i20.WrappedRoute(child: const _i8.LoginPage());
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i9.MainPage]
|
|
class MainRoute extends _i20.PageRouteInfo<void> {
|
|
const MainRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(MainRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'MainRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i9.MainPage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i10.OrderDetailPage]
|
|
class OrderDetailRoute extends _i20.PageRouteInfo<OrderDetailRouteArgs> {
|
|
OrderDetailRoute({
|
|
_i21.Key? key,
|
|
required _i22.Order order,
|
|
List<_i20.PageRouteInfo>? children,
|
|
}) : super(
|
|
OrderDetailRoute.name,
|
|
args: OrderDetailRouteArgs(key: key, order: order),
|
|
initialChildren: children,
|
|
);
|
|
|
|
static const String name = 'OrderDetailRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
final args = data.argsAs<OrderDetailRouteArgs>();
|
|
return _i10.OrderDetailPage(key: args.key, order: args.order);
|
|
},
|
|
);
|
|
}
|
|
|
|
class OrderDetailRouteArgs {
|
|
const OrderDetailRouteArgs({this.key, required this.order});
|
|
|
|
final _i21.Key? key;
|
|
|
|
final _i22.Order order;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'OrderDetailRouteArgs{key: $key, order: $order}';
|
|
}
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i11.OrderPage]
|
|
class OrderRoute extends _i20.PageRouteInfo<void> {
|
|
const OrderRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(OrderRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'OrderRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return _i20.WrappedRoute(child: const _i11.OrderPage());
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i12.ProductAnalyticPage]
|
|
class ProductAnalyticRoute extends _i20.PageRouteInfo<void> {
|
|
const ProductAnalyticRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(ProductAnalyticRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'ProductAnalyticRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return _i20.WrappedRoute(child: const _i12.ProductAnalyticPage());
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i13.ProductPage]
|
|
class ProductRoute extends _i20.PageRouteInfo<void> {
|
|
const ProductRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(ProductRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'ProductRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return _i20.WrappedRoute(child: const _i13.ProductPage());
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i14.ProfilePage]
|
|
class ProfileRoute extends _i20.PageRouteInfo<void> {
|
|
const ProfileRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(ProfileRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'ProfileRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return _i20.WrappedRoute(child: const _i14.ProfilePage());
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i15.PurchasePage]
|
|
class PurchaseRoute extends _i20.PageRouteInfo<void> {
|
|
const PurchaseRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(PurchaseRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'PurchaseRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i15.PurchasePage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i16.ReportPage]
|
|
class ReportRoute extends _i20.PageRouteInfo<void> {
|
|
const ReportRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(ReportRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'ReportRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return _i20.WrappedRoute(child: const _i16.ReportPage());
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i17.SalesPage]
|
|
class SalesRoute extends _i20.PageRouteInfo<void> {
|
|
const SalesRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(SalesRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'SalesRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return _i20.WrappedRoute(child: const _i17.SalesPage());
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i18.SchedulePage]
|
|
class ScheduleRoute extends _i20.PageRouteInfo<void> {
|
|
const ScheduleRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(ScheduleRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'ScheduleRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i18.SchedulePage();
|
|
},
|
|
);
|
|
}
|
|
|
|
/// generated route for
|
|
/// [_i19.SplashPage]
|
|
class SplashRoute extends _i20.PageRouteInfo<void> {
|
|
const SplashRoute({List<_i20.PageRouteInfo>? children})
|
|
: super(SplashRoute.name, initialChildren: children);
|
|
|
|
static const String name = 'SplashRoute';
|
|
|
|
static _i20.PageInfo page = _i20.PageInfo(
|
|
name,
|
|
builder: (data) {
|
|
return const _i19.SplashPage();
|
|
},
|
|
);
|
|
}
|