Remove unused file

This commit is contained in:
Moe Poi ~ 2022-05-15 21:45:46 +07:00
parent a8b9803867
commit eba0538bed

View file

@ -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),
),
];