156 Start

This commit is contained in:
2024-03-05 10:26:51 +01:00
parent d619853168
commit 142d245375
8 changed files with 285 additions and 118 deletions
+13
View File
@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
class Category {
const Category({
required this.id,
required this.title,
this.color = Colors.orange,
});
final String id;
final String title;
final Color color;
}