first commit
This commit is contained in:
150
lib/router.gr.dart
Normal file
150
lib/router.gr.dart
Normal file
@@ -0,0 +1,150 @@
|
||||
// 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 _i8;
|
||||
import 'package:flutter/material.dart' as _i9;
|
||||
import 'package:remever/screens/auth/auth_screen.dart' as _i1;
|
||||
import 'package:remever/screens/collections/collections_screen.dart' as _i2;
|
||||
import 'package:remever/screens/crud_collection/crud_collection.dart' as _i3;
|
||||
import 'package:remever/screens/home/home_screen.dart' as _i4;
|
||||
import 'package:remever/screens/settings/settings_screen.dart' as _i5;
|
||||
import 'package:remever/screens/splash/splash_screen.dart' as _i6;
|
||||
import 'package:remever/screens/statistick/statistick_screen.dart' as _i7;
|
||||
|
||||
/// generated route for
|
||||
/// [_i1.AuthScreen]
|
||||
class AuthRoute extends _i8.PageRouteInfo<void> {
|
||||
const AuthRoute({List<_i8.PageRouteInfo>? children})
|
||||
: super(AuthRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'AuthRoute';
|
||||
|
||||
static _i8.PageInfo page = _i8.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i1.AuthScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i2.CollectionScreen]
|
||||
class CollectionRoute extends _i8.PageRouteInfo<CollectionRouteArgs> {
|
||||
CollectionRoute({_i9.Key? key, List<_i8.PageRouteInfo>? children})
|
||||
: super(
|
||||
CollectionRoute.name,
|
||||
args: CollectionRouteArgs(key: key),
|
||||
initialChildren: children,
|
||||
);
|
||||
|
||||
static const String name = 'CollectionRoute';
|
||||
|
||||
static _i8.PageInfo page = _i8.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final args = data.argsAs<CollectionRouteArgs>(
|
||||
orElse: () => const CollectionRouteArgs(),
|
||||
);
|
||||
return _i2.CollectionScreen(key: args.key);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
class CollectionRouteArgs {
|
||||
const CollectionRouteArgs({this.key});
|
||||
|
||||
final _i9.Key? key;
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'CollectionRouteArgs{key: $key}';
|
||||
}
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i3.CrudCollection]
|
||||
class CrudCollection extends _i8.PageRouteInfo<void> {
|
||||
const CrudCollection({List<_i8.PageRouteInfo>? children})
|
||||
: super(CrudCollection.name, initialChildren: children);
|
||||
|
||||
static const String name = 'CrudCollection';
|
||||
|
||||
static _i8.PageInfo page = _i8.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i3.CrudCollection();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i4.HomeScreen]
|
||||
class HomeRoute extends _i8.PageRouteInfo<void> {
|
||||
const HomeRoute({List<_i8.PageRouteInfo>? children})
|
||||
: super(HomeRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'HomeRoute';
|
||||
|
||||
static _i8.PageInfo page = _i8.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i4.HomeScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i5.SettingsScreen]
|
||||
class SettingsRoute extends _i8.PageRouteInfo<void> {
|
||||
const SettingsRoute({List<_i8.PageRouteInfo>? children})
|
||||
: super(SettingsRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'SettingsRoute';
|
||||
|
||||
static _i8.PageInfo page = _i8.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i5.SettingsScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i6.SplashScreen]
|
||||
class SplashRoute extends _i8.PageRouteInfo<void> {
|
||||
const SplashRoute({List<_i8.PageRouteInfo>? children})
|
||||
: super(SplashRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'SplashRoute';
|
||||
|
||||
static _i8.PageInfo page = _i8.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i6.SplashScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i7.StatistickScreen]
|
||||
class StatistickRoute extends _i8.PageRouteInfo<void> {
|
||||
const StatistickRoute({List<_i8.PageRouteInfo>? children})
|
||||
: super(StatistickRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'StatistickRoute';
|
||||
|
||||
static _i8.PageInfo page = _i8.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i7.StatistickScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user