diff --git a/lib/screens/productcoba.dart b/lib/screens/productcoba.dart deleted file mode 100644 index 0e6bb91..0000000 --- a/lib/screens/productcoba.dart +++ /dev/null @@ -1,40 +0,0 @@ -import 'package:flutter/material.dart'; - -class Product { - final String image, title; - final int price; - final Color bgColor; - - Product({ - required this.image, - required this.title, - required this.price, - this.bgColor = const Color(0xFFEFEFF2), - }); -} - -List<Product> demoProduct = [ - Product( - image: "assets/Product_2.webp", - title: "Long Sleeve Shirts", - price: 165, - bgColor: const Color(0xFFFEFBF9), - ), - Product( - image: "assets/Product_1.webp", - title: "Casual Henley Shirts", - price: 99, - ), - Product( - image: "assets/Product_2.webp", - title: "Curved Hem Shirts", - price: 180, - bgColor: const Color(0xFFF8FEFB), - ), - Product( - image: "assets/Product_3.webp", - title: "Casual Nolin", - price: 149, - bgColor: const Color(0xFFEEEEED), - ), -];