- 添加 CodeGraph、Android 和通用 gitignore 配置 - 创建项目元数据文件跟踪 Flutter 项目属性 - 添加 Codex AI 指导文档 AGENTS.md 说明项目架构 - 配置代码分析选项 analysis_options.yaml - 设置 Android 应用清单权限和 Kiosk 模式配置 - 实现中英文国际化支持 AppLocalizations - 配置 GoRouter 应用路由导航 - 创建明亮工业控制风格的主题配置 AppTheme
24 lines
730 B
Dart
24 lines
730 B
Dart
/// 常量定义
|
|
class Constants {
|
|
// 速度选项
|
|
static const List<String> speedOptions = ['低速', '中速', '高速'];
|
|
|
|
// 下针速度档位
|
|
static const List<int> needleSpeedLevels = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
|
|
|
|
// 孔位列表
|
|
static const List<String> positions = [
|
|
'A1', 'A2', 'A3', 'A4', 'A5', 'A6',
|
|
'B1', 'B2', 'B3', 'B4', 'B5', 'B6',
|
|
'C1', 'C2', 'C3', 'C4', 'C5', 'C6',
|
|
'D1', 'D2', 'D3', 'D4', 'D5', 'D6',
|
|
];
|
|
|
|
// 默认步骤名称
|
|
static const List<String> defaultStepNames = ['混合', '吸磁', '吹气', '下针'];
|
|
|
|
// 时间单位
|
|
static const String timeUnitSeconds = '秒';
|
|
static const String timeUnitMinutes = '分钟';
|
|
static const String volumeUnit = 'μL';
|
|
} |