2023-01-31 21:24:26 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
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;
|
2022-11-29 18:46:23 +00:00
|
|
|
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;
|
2023-01-29 17:02:18 +00:00
|
|
|
static const double grid48 = 48;
|
2022-12-04 20:10:04 +00:00
|
|
|
static const double grid56 = 56;
|
2022-11-27 20:22:56 +00:00
|
|
|
static const double grid168 = 168;
|
2022-10-23 20:09:41 +00:00
|
|
|
|
2023-01-31 21:24:26 +00:00
|
|
|
static const double paddingS = 8;
|
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;
|
2022-10-29 10:52:05 +00:00
|
|
|
|
|
|
|
static const Duration durationS = Duration(milliseconds: 100);
|
2022-11-26 19:29:00 +00:00
|
|
|
static const Duration durationSM = Duration(milliseconds: 150);
|
2022-10-29 10:52:05 +00:00
|
|
|
static const Duration durationM = Duration(milliseconds: 200);
|
2022-11-29 18:46:23 +00:00
|
|
|
static const Duration durationML = Duration(milliseconds: 250);
|
2022-10-29 10:52:05 +00:00
|
|
|
static const Duration durationL = Duration(milliseconds: 300);
|
2022-12-21 19:31:22 +00:00
|
|
|
|
2023-01-29 16:57:47 +00:00
|
|
|
// TopBar
|
|
|
|
/// Probably this is a bad practice, but with text size locked, the height is always 212
|
|
|
|
static const double readingContainerHeight = 212;
|
|
|
|
|
2023-01-26 09:10:23 +00:00
|
|
|
// `CenteredSlider`
|
2022-12-21 19:31:22 +00:00
|
|
|
static const double cameraSliderTrackHeight = grid4;
|
|
|
|
static const double cameraSliderTrackRadius = cameraSliderTrackHeight / 2;
|
|
|
|
static const double cameraSliderHandleSize = 32;
|
|
|
|
static const double cameraSliderHandleIconSize = cameraSliderHandleSize * 2 / 3;
|
2023-01-31 21:24:26 +00:00
|
|
|
|
|
|
|
// Dialog
|
|
|
|
// Taken from `Dialog` documentation
|
2023-02-04 20:30:42 +00:00
|
|
|
static const EdgeInsets dialogTitlePadding = EdgeInsets.fromLTRB(
|
|
|
|
paddingL,
|
|
|
|
paddingL,
|
|
|
|
paddingL,
|
|
|
|
paddingM,
|
|
|
|
);
|
|
|
|
static const EdgeInsets dialogActionsPadding = EdgeInsets.fromLTRB(
|
|
|
|
paddingL,
|
|
|
|
paddingM,
|
|
|
|
paddingL,
|
|
|
|
paddingL,
|
|
|
|
);
|
2023-01-31 21:24:26 +00:00
|
|
|
static const EdgeInsets dialogMargin = EdgeInsets.symmetric(horizontal: 40.0, vertical: 24.0);
|
2022-10-23 20:09:41 +00:00
|
|
|
}
|