From 9b9f165e81ed6aa5310e9758461588936ca54b7c Mon Sep 17 00:00:00 2001 From: sion123 <450702724@qq.com> Date: Mon, 6 Apr 2026 20:54:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lib/ui/pages/asset/components/asset_dialogs.dart | 7 ------- .../lib/ui/pages/trade/components/trade_form_card.dart | 4 ++-- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/flutter_monisuo/lib/ui/pages/asset/components/asset_dialogs.dart b/flutter_monisuo/lib/ui/pages/asset/components/asset_dialogs.dart index dab3d02..2078bdd 100644 --- a/flutter_monisuo/lib/ui/pages/asset/components/asset_dialogs.dart +++ b/flutter_monisuo/lib/ui/pages/asset/components/asset_dialogs.dart @@ -602,13 +602,6 @@ void showWithdrawDialog(BuildContext context, String? balance) { color: colorScheme.onSurfaceVariant.withValues(alpha: 0.5), ), const SizedBox(width: AppSpacing.xs), - Text( - 'End-to-End Encrypted Transaction', - style: AppTextStyles.bodySmall(context).copyWith( - fontSize: 10, - color: colorScheme.onSurfaceVariant.withValues(alpha: 0.5), - ), - ), ], ), ], diff --git a/flutter_monisuo/lib/ui/pages/trade/components/trade_form_card.dart b/flutter_monisuo/lib/ui/pages/trade/components/trade_form_card.dart index e4b0f51..71aaaaf 100644 --- a/flutter_monisuo/lib/ui/pages/trade/components/trade_form_card.dart +++ b/flutter_monisuo/lib/ui/pages/trade/components/trade_form_card.dart @@ -87,7 +87,7 @@ class TradeFormCard extends StatelessWidget { '买入', style: AppTextStyles.headlineMedium(context).copyWith( color: isBuy - ? AppColorScheme.darkOnPrimary + ? Colors.white : context.colors.onSurfaceVariant, ), ), @@ -117,7 +117,7 @@ class TradeFormCard extends StatelessWidget { '卖出', style: AppTextStyles.headlineMedium(context).copyWith( color: !isBuy - ? AppColorScheme.darkOnPrimary + ? Colors.white : context.colors.onSurfaceVariant, ), ),