Files
rasadyar_application/features/supervision/lib/presentation/profile/logic.dart
mr.mojtaba 0c750e1c01 feat :
action
 profile
2025-04-21 15:45:15 +03:30

34 lines
519 B
Dart

import 'package:rasadyar_core/core.dart';
class ProfileLogic extends GetxController {
List<String> roles = <String>[
'کاربر عادی',
'کاربر ویژه',
'کاربر VIP',
'کاربر نقره ای',
'کاربر طلایی',
];
RxInt selectedRole = 0.obs;
RxInt selectedInformationType = 0.obs;
@override
void onReady() {
// TODO: implement onReady
super.onReady();
}
@override
void onClose() {
// TODO: implement onClose
super.onClose();
}
}