fix : saleOrBuyItemCard color

This commit is contained in:
2025-07-13 08:34:59 +03:30
parent f64ac3748b
commit a909210144
4 changed files with 20 additions and 9 deletions

View File

@@ -23,15 +23,17 @@ class BuyPage extends GetView<BuyLogic> {
spacing: 14.w,
children: [
saleOrBuyItemCard(
title: 'داخل استان',
title: 'خرید داخل استان',
iconPath: Assets.vec.cubeSvg.path,
color: AppColor.greenNormalActive,
onTap: () {
Get.toNamed(ChickenRoutes.buysInProvince, id: 0);
},
),
saleOrBuyItemCard(
title: 'خارج استان',
title: 'خرید خارج استان',
iconPath: Assets.vec.truckFastSvg.path,
color: AppColor.greenNormalActive,
onTap: () {
Get.toNamed(ChickenRoutes.buysOutOfProvince, id: 0);
},