2024-05-19 08:53:21 -04:00
|
|
|
class AppElementSizes {
|
|
|
|
|
// paddings
|
|
|
|
|
static const double paddingRegular = 8.0;
|
|
|
|
|
static const double paddingSmall = paddingRegular / 2;
|
|
|
|
|
static const double paddingLarge = paddingRegular * 2;
|
|
|
|
|
|
|
|
|
|
// border radius
|
|
|
|
|
static const double borderRadiusRegular = 12.0;
|
|
|
|
|
static const double borderRadiusSmall = borderRadiusRegular / 2;
|
|
|
|
|
|
|
|
|
|
// icon sizes
|
|
|
|
|
static const double iconSizeRegular = 48.0;
|
|
|
|
|
static const double iconSizeSmall = 36.0;
|
|
|
|
|
static const double iconSizeLarge = 64.0;
|
2025-11-13 17:53:23 +08:00
|
|
|
|
|
|
|
|
static const double barHeight = 3.0;
|
2025-11-22 15:54:29 +08:00
|
|
|
static const double barHeightLarge = 5.0;
|
2024-05-19 08:53:21 -04:00
|
|
|
}
|