From 7aa93d6c6f1f323a8fc0bdbdfe55ab20bb740345 Mon Sep 17 00:00:00 2001 From: hailin Date: Mon, 15 Dec 2025 23:57:59 -0800 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=E9=9A=90=E8=97=8F=E6=88=91=E7=9A=84?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=9A=84=20'=E8=BF=9B=E5=85=A5=E4=BA=A4?= =?UTF-8?q?=E6=98=93'=20=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 注释掉 '进入交易 (卖出 DST → 积分)' 按钮 - 代码保留在程序中,便于后续恢复 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../presentation/pages/profile_page.dart | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart b/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart index 82d53f59..a281a7e1 100644 --- a/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart +++ b/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart @@ -2142,32 +2142,32 @@ class _ProfilePageState extends ConsumerState { ), ), ), - const SizedBox(height: 12), - // 进入交易按钮 - GestureDetector( - onTap: _goToTrading, - child: Container( - width: double.infinity, - height: 48, - decoration: BoxDecoration( - color: const Color(0xFF8B5A2B), - borderRadius: BorderRadius.circular(8), - ), - child: const Center( - child: Text( - '进入交易 (卖出 DST → 积分)', - style: TextStyle( - fontSize: 16, - fontFamily: 'Inter', - fontWeight: FontWeight.w700, - height: 1.5, - letterSpacing: 0.24, - color: Colors.white, - ), - ), - ), - ), - ), + // 进入交易按钮(暂时隐藏) + // const SizedBox(height: 12), + // GestureDetector( + // onTap: _goToTrading, + // child: Container( + // width: double.infinity, + // height: 48, + // decoration: BoxDecoration( + // color: const Color(0xFF8B5A2B), + // borderRadius: BorderRadius.circular(8), + // ), + // child: const Center( + // child: Text( + // '进入交易 (卖出 DST → 积分)', + // style: TextStyle( + // fontSize: 16, + // fontFamily: 'Inter', + // fontWeight: FontWeight.w700, + // height: 1.5, + // letterSpacing: 0.24, + // color: Colors.white, + // ), + // ), + // ), + // ), + // ), ], ); }