You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import 'package:michele_s_application8/core/app_export.dart';
- import 'package:michele_s_application8/presentation/app_navigation_screen/models/app_navigation_model.dart';
-
- class AppNavigationController extends GetxController {
- Rx<AppNavigationModel> appNavigationModelObj = AppNavigationModel().obs;
-
- @override
- void onReady() {
- super.onReady();
- }
-
- @override
- void onClose() {
- super.onClose();
- }
- }
|