您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

17 行
418 B

  1. import 'package:michele_s_application8/core/app_export.dart';
  2. import 'package:michele_s_application8/presentation/app_navigation_screen/models/app_navigation_model.dart';
  3. class AppNavigationController extends GetxController {
  4. Rx<AppNavigationModel> appNavigationModelObj = AppNavigationModel().obs;
  5. @override
  6. void onReady() {
  7. super.onReady();
  8. }
  9. @override
  10. void onClose() {
  11. super.onClose();
  12. }
  13. }