initial commit

This commit is contained in:
2025-11-28 23:58:41 +03:00
commit 013690061c
77 changed files with 2337 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
class RouteList {
RouteList._();
static const String homeScreen = '/homeScreen';
}

18
lib/router/router.dart Normal file
View File

@@ -0,0 +1,18 @@
import 'package:base_project/features/home/home_screen.dart';
import 'package:base_project/router/route_list.dart';
import 'package:go_router/go_router.dart';
class AppRouter {
static final router = GoRouter(
initialLocation: RouteList.homeScreen,
routes: [
GoRoute(
path: RouteList.homeScreen,
name: RouteList.homeScreen,
builder: ( context, state ) => const HomeScreen()
)
]
);
}