25 lines
675 B
Dart
25 lines
675 B
Dart
// ignore_for_file: constant_identifier_names
|
|
|
|
class AppSize {
|
|
/// 边距
|
|
static const double verticalPadding = 8.0;
|
|
static const double verticalLargePadding = 16.0;
|
|
static const double horizontalPadding = 8.0;
|
|
static const double horizontalLargePadding = 16.0;
|
|
|
|
static const double verticalMargin = 16.0;
|
|
|
|
/// 文本大小
|
|
static const double titleFontSize = 18.0;
|
|
static const double fontSize = 14.0;
|
|
static const double smallFontSize = 10.0;
|
|
|
|
/// 分割线高度
|
|
static const double dividerHeight = 0;
|
|
|
|
/// 边框尺寸
|
|
static const double borderRadio = 8.0;
|
|
static const double borderWidth = 0.4;
|
|
static const double borderShadow = 8.0;
|
|
}
|