You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
Dart
15 lines
349 B
Dart
class AppDimensions {
|
|
static double screenHorizontalPadding = 20;
|
|
static double screenVerticalPadding = 20;
|
|
static double radiusBottomSheet = 20;
|
|
static double radiusButton = 50;
|
|
static double radiusCard = 10;
|
|
static double elevation = 5.0;
|
|
|
|
// Input
|
|
static double inputRadius = 20;
|
|
|
|
// Text
|
|
static double customTextSize = 12;
|
|
}
|