Files
rasadyar_application/features/supervision/lib/presentation/action/logic.dart
2025-04-20 08:53:15 +03:30

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();
}
}