feat: home page

This commit is contained in:
efrilm
2025-08-12 20:44:27 +07:00
parent ae1293d28d
commit f0dac56802
15 changed files with 1447 additions and 8 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ class AppColor {
static const Color secondaryDark = Color(0xFF388E3C);
// Background Colors
static const Color background = Color(0xFFF5F5F5);
static const Color background = Color(0xFFF8F9FA);
static const Color backgroundLight = Color(0xFFFFFFFF);
static const Color backgroundDark = Color(0xFF1A1A1A);
static const Color surface = Color(0xFFFFFFFF);
+3 -4
View File
@@ -1,8 +1,7 @@
part of 'theme.dart';
class AppValue {
static const double padding = 16.0;
static const double margin = 16.0;
static const double radius = 8.0;
static const double elevation = 4.0;
static const double padding = 20.0;
static const double margin = 20.0;
static const double radius = 16.0;
}
+8
View File
@@ -55,5 +55,13 @@ class ThemeApp {
fontWeight: FontWeight.w500,
),
),
appBarTheme: AppBarTheme(
backgroundColor: AppColor.white,
elevation: 1,
titleTextStyle: AppStyle.lg.copyWith(
fontWeight: FontWeight.w600,
color: AppColor.primary,
),
),
);
}