forked from lxm_flutter/FlutterUnit
39 lines
889 B
Dart
39 lines
889 B
Dart
/// create by 张风捷特烈 on 2020/11/17
|
|
/// contact me by email 1981462002@qq.com
|
|
/// 说明:
|
|
|
|
// ignore_for_file: constant_identifier_names
|
|
|
|
class SizeUnit {
|
|
|
|
// 小文字大小
|
|
static const double home_h_padding = 10;
|
|
static const double home_v_padding = 8;
|
|
|
|
// 文字相关
|
|
static const double input_hit_text_size = 13;
|
|
static const double input_text_size = 13;
|
|
|
|
// 小文字大小
|
|
static const double small_text_size = 12;
|
|
|
|
// 标题文字大小
|
|
static const double title_text_size = 14;
|
|
|
|
// 头文字大小
|
|
static const double head_text_size = 18;
|
|
|
|
// 大文字大小
|
|
static const double big_text_size = 22;
|
|
|
|
//底栏图标大小
|
|
static const double default_bottom_nav_icon = 24;
|
|
static const double active_bottom_nav_icon = 29;
|
|
|
|
//底栏高
|
|
static const double bottom_nav_height = 50;
|
|
static const double bottom_nav_right_width = 120;
|
|
|
|
|
|
}
|