37 lines
649 B
Dart
37 lines
649 B
Dart
import 'package:get/get.dart';
|
|
import 'package:rasadyar_core/presentation/common/assets.dart';
|
|
|
|
class ActionLogic extends GetxController {
|
|
RxInt selectedIndex = 0.obs;
|
|
|
|
List<String> headersTitle = [
|
|
'کاربران',
|
|
'سوابق بازرسی من',
|
|
'آمار',
|
|
'خروج از سامانه'
|
|
|
|
];
|
|
|
|
|
|
List<String> headersIcons = [
|
|
Assets.vecProfileUserSvg,
|
|
Assets.vecCalendarSearchSvg,
|
|
Assets.vecDiagramSvg,
|
|
Assets.vecLogoutSvg,
|
|
|
|
|
|
];
|
|
|
|
@override
|
|
void onReady() {
|
|
// TODO: implement onReady
|
|
super.onReady();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
// TODO: implement onClose
|
|
super.onClose();
|
|
}
|
|
}
|