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,