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