Surface/lib/route.gr.dart
2025-04-21 00:43:33 +08:00

30 lines
866 B
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 _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();
},
);
}