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, + // ), + // ), + // ), + // ), + // ), ], ); }