base project

This commit is contained in:
efrilm
2025-10-23 22:16:53 +07:00
parent 6612cef24f
commit 4fee7c4bb7
52 changed files with 3319 additions and 229 deletions
+5
View File
@@ -0,0 +1,5 @@
part of 'theme.dart';
class AppColor {
// TODO: define color
}
+5
View File
@@ -0,0 +1,5 @@
part of 'theme.dart';
class AppStyle {
// TODO: define style
}
+5
View File
@@ -0,0 +1,5 @@
part of 'theme.dart';
class AppValue {
// TODO: define value
}
+11
View File
@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
part 'app_color.dart';
part 'app_style.dart';
part 'app_value.dart';
class ThemeApp {
static ThemeData get theme => ThemeData(
useMaterial3: true,
);
}