🎉 Initial Commit
This commit is contained in:
29
lib/route.gr.dart
Normal file
29
lib/route.gr.dart
Normal file
@ -0,0 +1,29 @@
|
||||
// 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 _i2;
|
||||
import 'package:island/screens/explore.dart' as _i1;
|
||||
|
||||
/// generated route for
|
||||
/// [_i1.ExploreScreen]
|
||||
class ExploreRoute extends _i2.PageRouteInfo<void> {
|
||||
const ExploreRoute({List<_i2.PageRouteInfo>? children})
|
||||
: super(ExploreRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'ExploreRoute';
|
||||
|
||||
static _i2.PageInfo page = _i2.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i1.ExploreScreen();
|
||||
},
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user