初始化
This commit is contained in:
13
lib/router/modules/home_routes.dart
Normal file
13
lib/router/modules/home_routes.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
import 'package:app/pages/home/home_page.dart';
|
||||
import 'package:app/router/config/router_config.dart';
|
||||
|
||||
import '../config/route_paths.dart';
|
||||
|
||||
List<RouterConfig> homeRoutes = [
|
||||
RouterConfig(
|
||||
path: RoutePaths.home,
|
||||
child: (state) {
|
||||
return HomePage();
|
||||
},
|
||||
)
|
||||
];
|
||||
Reference in New Issue
Block a user