property_component_service.dart 652 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Property 组件的组件路由
  3. */
  4. import 'package:flutter/cupertino.dart';
  5. import 'package:router/componentRouter/property_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/property/page/property_page.dart';
  10. part 'property_component_service.g.dart';
  11. @Riverpod(keepAlive: true)
  12. PropertyService propertyService(Ref ref) {
  13. return PropertyComponentService();
  14. }
  15. class PropertyComponentService extends PropertyService {
  16. @override
  17. void startPropertyPage() {
  18. PropertyPage.startInstance();
  19. }
  20. }