fix(ui): 隐藏我的页面的 '进入交易' 按钮

- 注释掉 '进入交易 (卖出 DST → 积分)' 按钮
- 代码保留在程序中,便于后续恢复

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-15 23:57:59 -08:00
parent bffea27f48
commit 7aa93d6c6f
1 changed files with 26 additions and 26 deletions

View File

@ -2142,32 +2142,32 @@ class _ProfilePageState extends ConsumerState<ProfilePage> {
), ),
), ),
), ),
const SizedBox(height: 12), //
// // const SizedBox(height: 12),
GestureDetector( // GestureDetector(
onTap: _goToTrading, // onTap: _goToTrading,
child: Container( // child: Container(
width: double.infinity, // width: double.infinity,
height: 48, // height: 48,
decoration: BoxDecoration( // decoration: BoxDecoration(
color: const Color(0xFF8B5A2B), // color: const Color(0xFF8B5A2B),
borderRadius: BorderRadius.circular(8), // borderRadius: BorderRadius.circular(8),
), // ),
child: const Center( // child: const Center(
child: Text( // child: Text(
'进入交易 (卖出 DST → 积分)', // '进入交易 (卖出 DST → 积分)',
style: TextStyle( // style: TextStyle(
fontSize: 16, // fontSize: 16,
fontFamily: 'Inter', // fontFamily: 'Inter',
fontWeight: FontWeight.w700, // fontWeight: FontWeight.w700,
height: 1.5, // height: 1.5,
letterSpacing: 0.24, // letterSpacing: 0.24,
color: Colors.white, // color: Colors.white,
), // ),
), // ),
), // ),
), // ),
), // ),
], ],
); );
} }