mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
8381e5b753
added picker dialogs subtitle show EV difference (wip) jump to selected value added EV difference to pickers hide inkwell overflow thirds iso normal style fixed picker ev difference order more picker typdefs
23 lines
833 B
Dart
23 lines
833 B
Dart
/// `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;
|
|
|
|
static const double grid4 = 4;
|
|
static const double grid8 = 8;
|
|
static const double grid16 = 16;
|
|
static const double grid24 = 24;
|
|
static const double grid56 = 56;
|
|
static const double grid168 = 168;
|
|
|
|
static const double paddingM = 16;
|
|
static const double paddingL = 24;
|
|
|
|
static const Duration durationS = Duration(milliseconds: 100);
|
|
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);
|
|
}
|