From eba0538bed06747c0c6d6cbcdc37af73280e0f89 Mon Sep 17 00:00:00 2001
From: Moe <moe@chocola.dev>
Date: Sun, 15 May 2022 21:45:46 +0700
Subject: [PATCH] Remove unused file

---
 lib/screens/productcoba.dart | 40 ------------------------------------
 1 file changed, 40 deletions(-)
 delete mode 100644 lib/screens/productcoba.dart

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