profile_component_service_impl.dart 396 B

12345678910111213141516
  1. /*
  2. * Profile 组件的组件路由
  3. */
  4. import 'package:flutter/cupertino.dart';
  5. import 'package:router/componentRouter/profile_service.dart';
  6. import '../../modules/profile_edit/page/Profile_edit_page.dart';
  7. class ProfileComponentServiceImpl extends ProfileService {
  8. @override
  9. void startEditProfilePage({BuildContext? context}) {
  10. ProfileEditPage.startInstance(context: context);
  11. }
  12. }