| 123456789101112131415161718192021222324252627 |
- import 'package:flutter/material.dart';
- import 'package:japp_flutter/core/models/dropdown_item.dart';
- // 挑战目标难度选项
- const List<DropdownItem<int>> challengeDifficultyOpts = [
- DropdownItem(value: 1, label: '简单', icon: Icons.sentiment_very_satisfied),
- DropdownItem(value: 2, label: '普通',icon: Icons.sentiment_satisfied),
- DropdownItem(value: 3, label: '困难',icon:Icons.sentiment_dissatisfied),
- DropdownItem(value: 4, label: '地狱',icon: Icons.sentiment_very_dissatisfied),
- ];
- // 选项常量(放在 constants.dart 或表单文件顶部)
- const List<DropdownItem<int>> challengeActionTypeOpts = [
- DropdownItem(value: 1, label: '愿景'),
- DropdownItem(value: 2, label: '战略目标'),
- DropdownItem(value: 3, label: '挑战目标'),
- DropdownItem(value: 4, label: '待办目标'),
- ];
- const List<DropdownItem<int>> challengeStatusOpts = [
- DropdownItem(value: 1, label: '正常'),
- DropdownItem(value: 2, label: '进行中'),
- DropdownItem(value: 3, label: '已完成'),
- DropdownItem(value: 4, label: '失败放弃'),
- ];
|