mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
12 lines
285 B
Dart
12 lines
285 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 grid8 = 8;
|
||
|
static const double grid16 = 16;
|
||
|
|
||
|
static const double paddingM = 16;
|
||
|
}
|