feat: 为划转页面确认按钮添加图标

- 添加 LucideIcons.arrowRightLeft 图标到确认按钮
- 加载状态时自动隐藏图标
- 提升用户体验和视觉识别度
This commit is contained in:
2026-03-30 11:38:04 +08:00
parent 7df584887b
commit a3a2ae76fc
3 changed files with 1966 additions and 1963 deletions

View File

@@ -212,6 +212,7 @@ class _TransferPageState extends State<TransferPage> {
width: double.infinity,
child: NeonButton(
text: _isLoading ? '处理中...' : '确认划转',
icon: _isLoading ? null : LucideIcons.arrowRightLeft,
type: NeonButtonType.primary,
onPressed: _isLoading ? null : _doTransfer,
height: 52,