import 'package:get/get.dart'; import 'package:rasadyar_core/presentation/common/assets.dart'; class ActionLogic extends GetxController { RxInt selectedIndex = 0.obs; List headersTitle = [ 'کاربران', 'سوابق بازرسی من', 'آمار', 'خروج از سامانه' ]; List 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(); } }