feat : header action
This commit is contained in:
36
features/supervision/lib/presentation/action/logic.dart
Normal file
36
features/supervision/lib/presentation/action/logic.dart
Normal file
@@ -0,0 +1,36 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user