mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
f62f658be8
* added system overlays for iPhone 8 Plus & iPhone 13 Pro * add device frame (wip) * scale device frame (wip) * add text to screenshots (wip) * added screenshots config json * reorganized screenshot models * cleanup * added fonts for dark screenshots * typo * store raw screenshots * added standalone script to update screenshots * wip * refined screenshots naming * skip metering layout dialog screenshot * parse ipad name * added assets for Pixel 6 * typo * added text for incident light metering * reorganized store script * typo * wip * synced outlined icons * added timer screen to screenshot generator * constrained timer screen timeline for tablets * added timer screenshot title * typo * revised scripts * track release screenshots * Update README.md * iphone 6.5" -> iphone 6.7" * Update google_play_resources.md * softened screenshot font colors * cleanup
74 lines
2.4 KiB
Dart
74 lines
2.4 KiB
Dart
import 'package:flutter/material.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 elevationLevel0 = 0;
|
|
static const double elevationLevel1 = 1;
|
|
static const double elevationLevel2 = 3;
|
|
static const double elevationLevel3 = 6;
|
|
|
|
static const double grid4 = 4;
|
|
static const double grid8 = 8;
|
|
static const double grid16 = 16;
|
|
static const double grid24 = 24;
|
|
static const double grid48 = 48;
|
|
static const double grid56 = 56;
|
|
static const double grid72 = 72;
|
|
|
|
static const double paddingS = 8;
|
|
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);
|
|
static const Duration switchDuration = Duration(milliseconds: 100);
|
|
|
|
static const double enabledOpacity = 1.0;
|
|
static const double disabledOpacity = 0.38;
|
|
|
|
static const double sliverAppBarExpandedHeight = 168;
|
|
|
|
// TopBar
|
|
static const double readingContainerDoubleValueHeight = 128;
|
|
static const double readingContainerSingleValueHeight = 76;
|
|
|
|
// `CenteredSlider`
|
|
static const double cameraSliderTrackHeight = grid4;
|
|
static const double cameraSliderTrackRadius = cameraSliderTrackHeight / 2;
|
|
static const double cameraSliderHandleArea = 32;
|
|
static const double cameraSliderHandleSize = 24;
|
|
static const double cameraSliderHandleIconSize = cameraSliderHandleSize * 2 / 3;
|
|
|
|
// Dialog
|
|
// Taken from `Dialog` documentation
|
|
static const EdgeInsets dialogTitlePadding = EdgeInsets.fromLTRB(
|
|
paddingL,
|
|
paddingL,
|
|
paddingL,
|
|
paddingM,
|
|
);
|
|
static const EdgeInsets dialogIconTitlePadding = EdgeInsets.fromLTRB(
|
|
paddingL,
|
|
0,
|
|
paddingL,
|
|
paddingM,
|
|
);
|
|
static const EdgeInsets dialogActionsPadding = EdgeInsets.fromLTRB(
|
|
paddingM,
|
|
paddingM,
|
|
paddingL,
|
|
paddingL,
|
|
);
|
|
static const EdgeInsets dialogMargin = EdgeInsets.symmetric(horizontal: 40.0, vertical: 24.0);
|
|
|
|
// TODO(@vodemn) constrain dialogs with this value
|
|
static const double tabletMaxWidth = 600;
|
|
}
|