feat: home page
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user