mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-06 11:09:28 +00:00
16 lines
486 B
Dart
16 lines
486 B
Dart
|
|
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;
|
||
|
|
}
|