/* * Profile 组件的组件路由 */ import 'package:flutter/cupertino.dart'; import 'package:router/componentRouter/profile_service.dart'; import '../../modules/profile_edit/page/Profile_edit_page.dart'; class ProfileComponentServiceImpl extends ProfileService { @override void startEditProfilePage({BuildContext? context}) { ProfileEditPage.startInstance(context: context); } }