Files
zh-chat-flutter/lib/configs/app_size.dart
2022-10-19 10:54:45 +08:00

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;
}