nl_service_impl.dart 411 B

123456789101112131415161718192021222324
  1. import 'package:plugin_basic/basic_export.dart';
  2. import 'package:router/componentRouter/nl_service.dart';
  3. /// 荷兰组件对应的路由实现类
  4. class NLServiceImpl extends GetxService implements NLService {
  5. @override
  6. void onInit() {
  7. super.onInit();
  8. //初始化资源
  9. }
  10. @override
  11. void onClose() {
  12. super.onClose();
  13. //销毁资源
  14. }
  15. @override
  16. void startNLMainPage() {
  17. }
  18. }