14 lines
351 B
Dart
14 lines
351 B
Dart
import 'package:go_router/go_router.dart';
|
|
import 'package:maibu_satabot_v2/features/v2/my/presentation/pages/my_page.dart';
|
|
|
|
/// 我的页面路由配置
|
|
class MyRoutes {
|
|
static List<RouteBase> get routes => [
|
|
GoRoute(
|
|
path: 'my',
|
|
name: 'my',
|
|
builder: (context, state) => const MyPage(),
|
|
),
|
|
];
|
|
}
|