fix : card Icon color and svg -> Poultry Action

This commit is contained in:
2025-09-13 16:21:23 +03:30
parent 7f29023e94
commit 1c9fd9a765
2 changed files with 2 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ class PoultryActionLogic extends GetxController {
RxList<PoultryActionItem> items = [
PoultryActionItem(title: "بازرسی", route: ChickenRoutes.inspectionPoultryScience,icon: Assets.vec.cubeSearchSvg.path),
PoultryActionItem(title: "ثبت کشتار", route: ChickenRoutes.killingRegistrationPoultryScience,icon: Assets.vec.noteRemoveSvg.path),
PoultryActionItem(title: "فارم ها", route: ChickenRoutes.farmPoultryScience,icon: Assets.vec.cubeBottomRotationSvg.path),
PoultryActionItem(title: "فارم ها", route: ChickenRoutes.farmPoultryScience,icon: Assets.vec.cubeScanSvg.path),
PoultryActionItem(title: "جوجه ریزی فعال", route: ChickenRoutes.activeHatchingPoultryScience,icon: Assets.vec.boxTickSvg.path),
].obs;

View File

@@ -51,6 +51,7 @@ class PoultryActionPage extends GetView<PoultryActionLogic> {
return CardIcon(
title: item.title,
vecIcon: item.icon,
iconColor: AppColor.blueNormal,
onTap: () async {
Get.toNamed(item.route, id: 0);
},