2022-05-15 09:07:47 +02:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
2022-05-13 06:02:53 +02:00
|
|
|
class Category {
|
|
|
|
final String icon, title;
|
|
|
|
|
|
|
|
Category({required this.icon, required this.title});
|
|
|
|
}
|
|
|
|
|
2022-05-14 18:44:03 +02:00
|
|
|
List<Category> demoCategories = [
|
2022-05-13 06:02:53 +02:00
|
|
|
Category(
|
|
|
|
icon: "assets/icons/dress.svg",
|
|
|
|
title: "Dress",
|
|
|
|
),
|
|
|
|
Category(
|
|
|
|
icon: "assets/icons/shirt.svg",
|
|
|
|
title: "Shirt",
|
|
|
|
),
|
|
|
|
Category(
|
|
|
|
icon: "assets/icons/pants.svg",
|
|
|
|
title: "Pants",
|
|
|
|
),
|
|
|
|
Category(
|
|
|
|
icon: "assets/icons/Tshirt.svg",
|
|
|
|
title: "Tshirt",
|
|
|
|
),
|
|
|
|
];
|