welcom page and home page init

This commit is contained in:
2023-09-27 09:13:34 +02:00
parent d598a41475
commit 9314d5f4e0
9 changed files with 146 additions and 107 deletions

View File

@@ -0,0 +1,14 @@
enum Color {
none,
red,
orange,
yellow,
green,
blue,
purple,
pink,
brown,
grey,
black,
white,
}

View File

@@ -0,0 +1,7 @@
enum Priority{
none,
low,
medium,
moderate,
high
}

View File

@@ -0,0 +1,6 @@
import 'enum/color.dart';
class Tag {
static String title = "";
Color color = Color.none;
}