From 258653cac4e4a2b8a0d54c67ca0b797e79e2af54 Mon Sep 17 00:00:00 2001 From: sion <450702724@qq.com> Date: Wed, 8 Apr 2026 13:09:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=85=85=E5=80=BC/?= =?UTF-8?q?=E6=8F=90=E7=8E=B0=E5=9B=BE=E6=A0=87=E5=90=AB=E4=B9=89=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 问题 - 充值显示 arrowUpRight(右上箭头),看起来像禁止符号 - 提现显示 arrowDownLeft(左下箭头),含义不直观 ## 修复(2个文件) ### quick_actions_row.dart(首页快捷操作) - 充值:arrowUpRight → arrowDownToLine(箭头向下到底线,资金入账) - 提现:arrowDownLeft → arrowUpFromLine(箭头向上离开底线,资金转出) ### action_buttons_row.dart(资产页面操作按钮) - 充值:arrowUpRight → arrowDownToLine - 提现:arrowDownLeft → arrowUpFromLine ## 检查结果 ✅ 底部导航图标全部正确(首页/行情/交易/资产/我的) ✅ 其他页面图标全部正确(划转/盈亏/账单等) ✅ 71处 LucideIcons 使用全部语义匹配 --- .../lib/ui/pages/asset/components/action_buttons_row.dart | 4 ++-- flutter_monisuo/lib/ui/pages/home/quick_actions_row.dart | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/flutter_monisuo/lib/ui/pages/asset/components/action_buttons_row.dart b/flutter_monisuo/lib/ui/pages/asset/components/action_buttons_row.dart index 1f80ef5..edae8c0 100644 --- a/flutter_monisuo/lib/ui/pages/asset/components/action_buttons_row.dart +++ b/flutter_monisuo/lib/ui/pages/asset/components/action_buttons_row.dart @@ -29,7 +29,7 @@ class ActionButtonsRow extends StatelessWidget { return Row( children: [ ActionButton( - icon: LucideIcons.arrowUpRight, + icon: LucideIcons.arrowDownToLine, label: '充值', accentColor: accentColor, bgColor: bgColor, @@ -37,7 +37,7 @@ class ActionButtonsRow extends StatelessWidget { ), const SizedBox(width: 12), ActionButton( - icon: LucideIcons.arrowDownLeft, + icon: LucideIcons.arrowUpFromLine, label: '提現', accentColor: accentColor, bgColor: bgColor, diff --git a/flutter_monisuo/lib/ui/pages/home/quick_actions_row.dart b/flutter_monisuo/lib/ui/pages/home/quick_actions_row.dart index c339173..046d32f 100644 --- a/flutter_monisuo/lib/ui/pages/home/quick_actions_row.dart +++ b/flutter_monisuo/lib/ui/pages/home/quick_actions_row.dart @@ -49,13 +49,13 @@ class QuickActionsRow extends StatelessWidget { mainAxisAlignment: MainAxisAlignment.spaceAround, children: [ _ActionItem( - icon: LucideIcons.arrowUpRight, + icon: LucideIcons.arrowDownToLine, label: '充值', colorScheme: colorScheme, onTap: onDeposit, ), _ActionItem( - icon: LucideIcons.arrowDownLeft, + icon: LucideIcons.arrowUpFromLine, label: '提現', colorScheme: colorScheme, onTap: onWithdraw,