m3_lightmeter/lib/res/dimens.dart
2022-10-24 23:25:38 +03:00

12 lines
318 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 grid4 = 4;
static const double grid8 = 8;
static const double grid16 = 16;
static const double paddingM = 16;
}