fix(mobile-app): 隐藏提取页面的网络选择功能

- 提取绿积分页面隐藏"选择网络"组件
- 确认提取页面隐藏"提取网络"显示行
- 保留原有网络功能逻辑不变

🤖 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-22 17:32:58 -08:00
parent 7a264a0158
commit 06df38b918
2 changed files with 6 additions and 5 deletions

View File

@ -463,8 +463,9 @@ class _WithdrawConfirmPageState extends ConsumerState<WithdrawConfirmPage> {
),
),
const SizedBox(height: 16),
_buildDetailRow('提取网络', _getNetworkName(widget.params.network)),
const SizedBox(height: 12),
//
// _buildDetailRow('提取网络', _getNetworkName(widget.params.network)),
// const SizedBox(height: 12),
_buildDetailRow('接收账号', _formatAddress(widget.params.address)),
const SizedBox(height: 12),
_buildDetailRow('提取数量', '${widget.params.amount.toStringAsFixed(2)} 绿积分'),

View File

@ -378,9 +378,9 @@ class _WithdrawUsdtPageState extends ConsumerState<WithdrawUsdtPage> {
_buildBalanceCard(),
const SizedBox(height: 24),
//
_buildNetworkSelector(),
const SizedBox(height: 24),
//
// _buildNetworkSelector(),
// const SizedBox(height: 24),
//
_buildAddressInput(),