From 02abb634abd5fbd73174b8266658e1ff39bb180a Mon Sep 17 00:00:00 2001 From: fmk Date: Thu, 13 Oct 2022 17:54:51 +0800 Subject: [PATCH] ios --- lib/store/store_view/product_meals_sku.dart | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/lib/store/store_view/product_meals_sku.dart b/lib/store/store_view/product_meals_sku.dart index ce8c2eb1..cfa3906d 100644 --- a/lib/store/store_view/product_meals_sku.dart +++ b/lib/store/store_view/product_meals_sku.dart @@ -360,11 +360,16 @@ class _ProductMealsSku extends State { }, ), if (productSetMeals[position].productInfoList[index].productAttrInfoList[0].attrName != "") - Icon( - Icons.chevron_right, - color: Colors.black, - size: 18, - ), + GestureDetector( + onTap: (){ + showSkuDialog(position,index); + }, + child: Icon( + Icons.chevron_right, + color: Colors.black, + size: 18, + ), + ) ], ), SizedBox(height: 8.h),