Files
xianyan/lib/core/theme/app_spacing.dart
Developer c44457f94c style: 修复文件头部注释的多余BOM头字符
移除所有文件头部的不可见BOM前缀字符,统一文件头部注释格式,确保跨平台编译一致性
2026-05-27 08:05:47 +08:00

31 lines
726 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/// ============================================================
/// 闲言APP — 间距令牌
/// 创建时间: 2026-04-20
/// 更新时间: 2026-04-20
/// 作用: 统一间距定义4 的倍数体系
/// 上次更新: 初始创建
/// ============================================================
/// 间距令牌 — 全局统一
class AppSpacing {
AppSpacing._();
/// 紧凑间距 4dp
static const double xs = 4.0;
/// 元素内间距 8dp
static const double sm = 8.0;
/// 标准间距 16dp
static const double md = 16.0;
/// 区块间距 24dp
static const double lg = 24.0;
/// 大区块间距 32dp
static const double xl = 32.0;
/// 页面边距 48dp
static const double xxl = 48.0;
}