fix:shop-product

This commit is contained in:
koushik.m 2025-10-11 19:21:14 +05:30
parent 476c8f0720
commit 9dfcd25b2a

View File

@ -967,19 +967,63 @@ class ShopGridRightSidebarPage extends StatelessWidget {
}, },
), ),
ProductCard( ProductCard(
imageUrl: 'https://nest-frontend-v6.vercel.app/assets/imgs/shop/product-1-1.jpg', imageUrl: 'https://nest-frontend-v6.vercel.app/assets/imgs/shop/product-2-1.jpg',
category: 'Snack', category: 'Hodo Foods',
title: 'Seeds of Change Organic Quinoa', title: 'All Natural Italian-style Chicken Meatball',
rating: 4.0, rating: 3.5,
brand: 'NestFood', brand: 'Stouffer',
currentPrice: 28.85, currentPrice: 52.25,
originalPrice: 32.8, originalPrice: 55.6,
onAdd: () { onAdd: () {
ScaffoldMessenger.of(context).showSnackBar( ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Added to cart!')), const SnackBar(content: Text('Added to cart!')),
); );
}, },
), ),
ProductCard(
imageUrl: 'https://nest-frontend-v6.vercel.app/assets/imgs/shop/product-3-1.jpg',
category: 'Snack',
title: "Angies Boomchickapop Sweet & Salty",
rating: 4.0,
brand: 'By StarKist',
currentPrice: 48.85,
originalPrice: 52.80,
onAdd: () {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Added to cart!')),
);
},
),
ProductCard(
imageUrl: 'https://nest-frontend-v6.vercel.app/assets/imgs/shop/product-4-1.jpg',
category: 'Vegetable',
title: 'Foster Farms Takeout Crispy Classic',
rating: 4.0,
brand: 'NestFood',
currentPrice: 17.85,
originalPrice: 19.8,
onAdd: (){
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Added to card!')),
);
},
),
ProductCard(
imageUrl: 'https://nest-frontend-v6.vercel.app/assets/imgs/shop/product-5-1.jpg',
category: 'Pet Foods',
title: 'Blue Diamond Almonds Lightly',
rating: 4.0,
brand: "NestFood",
currentPrice: 23.85,
originalPrice: 25.8,
onAdd: (){
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Added to card!')),
);
},
),
const SizedBox(height: 24), const SizedBox(height: 24),
], ],
), ),