🎉 Initial Commit

This commit is contained in:
2025-04-21 00:43:33 +08:00
commit 8e7baaa380
137 changed files with 6127 additions and 0 deletions

11
lib/route.dart Normal file
View File

@ -0,0 +1,11 @@
import 'package:auto_route/auto_route.dart';
import 'package:island/route.gr.dart';
@AutoRouterConfig(replaceInRouteName: 'Screen|Page,Route')
class AppRouter extends RootStackRouter {
@override
RouteType get defaultRouteType => RouteType.adaptive();
@override
List<AutoRoute> get routes => [AutoRoute(page: ExploreRoute.page, path: '/')];
}