menu detail page
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user