menu detail page

This commit is contained in:
Efril
2026-01-16 14:41:09 +07:00
parent 44d48d41d4
commit f4f775b9ed
9 changed files with 623 additions and 316 deletions
+5 -1
View File
@@ -1,3 +1,7 @@
part of 'theme.dart';
class AppValue {}
class AppValue {
static const double padding = 16;
static const double margin = 16;
static const double borderRadius = 12;
}
+3 -1
View File
@@ -55,7 +55,9 @@ class ThemeApp {
backgroundColor: AppColor.primary,
foregroundColor: Colors.white,
elevation: 0,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(24)),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppValue.borderRadius),
),
),
),
inputDecorationTheme: InputDecorationTheme(