community_component_service.dart 664 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Community 组件的组件路由
  3. */
  4. import 'package:flutter/cupertino.dart';
  5. import 'package:router/componentRouter/community_service.dart';
  6. import 'package:flutter/material.dart';
  7. import 'package:hooks_riverpod/hooks_riverpod.dart';
  8. import 'package:riverpod_annotation/riverpod_annotation.dart';
  9. import '../../modules/community/page/community_page.dart';
  10. part 'community_component_service.g.dart';
  11. @Riverpod(keepAlive: true)
  12. CommunityService communityService(Ref ref) {
  13. return CommunityComponentService();
  14. }
  15. class CommunityComponentService extends CommunityService {
  16. @override
  17. void startCommunityPage() {
  18. CommunityPage.startInstance();
  19. }
  20. }