action
 profile
This commit is contained in:
2025-04-21 15:45:15 +03:30
parent d4ebefedba
commit 0c750e1c01
36 changed files with 1082 additions and 207 deletions

View File

@@ -0,0 +1,33 @@
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();
}
}