diff --git a/lib/components/item_card.dart b/lib/components/item_card.dart index 067cef7..20f8527 100644 --- a/lib/components/item_card.dart +++ b/lib/components/item_card.dart @@ -27,9 +27,10 @@ class ProductCard extends StatelessWidget { onTap: onTap, child: ConstrainedBox( constraints: BoxConstraints( - minHeight: 160, - maxHeight: getCardHeight(context: context), - ), + minHeight: 160, + maxHeight: getCardHeight(context: context), + minWidth: 180, + maxWidth: 250), child: Card( elevation: 3, color: Theme.of(context).scaffoldBackgroundColor,