This commit is contained in:
2022-10-19 10:54:45 +08:00
commit 153e28aa4e
115 changed files with 4215 additions and 0 deletions

24
lib/configs/app_size.dart Normal file
View File

@@ -0,0 +1,24 @@
// 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;
}