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),