fix : change app architecture

feat : add some method to local storage
This commit is contained in:
2025-05-14 09:42:44 +03:30
parent e11ef1990c
commit feb3df6a06
50 changed files with 1007 additions and 70 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();
}
}