m3_lightmeter/lib/res/dimens.dart

23 lines
798 B
Dart
Raw Normal View History

2022-10-23 20:09:41 +00:00
/// `valueM` represents the base value.
/// All other values differs by 8dp.
class Dimens {
static const double borderRadiusM = 16;
static const double borderRadiusL = 24;
static const double borderRadiusXL = 32;
2022-10-23 20:09:41 +00:00
2022-10-24 20:25:38 +00:00
static const double grid4 = 4;
2022-10-23 20:09:41 +00:00
static const double grid8 = 8;
static const double grid16 = 16;
2022-10-26 19:49:21 +00:00
static const double grid24 = 24;
2022-11-27 20:22:56 +00:00
static const double grid168 = 168;
2022-10-23 20:09:41 +00:00
static const double paddingM = 16;
2022-11-27 20:22:56 +00:00
static const double paddingL = 24;
static const Duration durationS = Duration(milliseconds: 100);
2022-11-26 19:29:00 +00:00
static const Duration durationSM = Duration(milliseconds: 150);
static const Duration durationM = Duration(milliseconds: 200);
static const Duration durationML = Duration(milliseconds: 250);
static const Duration durationL = Duration(milliseconds: 300);
2022-10-23 20:09:41 +00:00
}