refactor(trading): rename 卖出相关 黑洞 to 积分股池

- Update 10% 进入黑洞 to 10% 进入积分股池
- Update 销毁金额 to 进入积分股池 in sell confirmation
- Update 注意 text in sell confirmation
- Change color from red to green for 积分股池 text

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-17 00:10:40 -08:00
parent aee64d9be8
commit 216394a44f
1 changed files with 5 additions and 5 deletions

View File

@ -507,10 +507,10 @@ class _TradingPageState extends ConsumerState<TradingPage> {
style: TextStyle(fontSize: 12, color: _grayText), style: TextStyle(fontSize: 12, color: _grayText),
), ),
Text( Text(
'10% 进入黑洞', '10% 进入积分股池',
style: TextStyle( style: TextStyle(
fontSize: 12, fontSize: 12,
color: _red, color: _green,
fontFamily: 'monospace', fontFamily: 'monospace',
), ),
), ),
@ -928,8 +928,8 @@ class _TradingPageState extends ConsumerState<TradingPage> {
Text('交易总额: ${formatAmount(total.toString())} 积分值'), Text('交易总额: ${formatAmount(total.toString())} 积分值'),
const SizedBox(height: 8), const SizedBox(height: 8),
Text( Text(
'销毁金额: ${formatAmount(burned.toString())} 积分值 (10%)', '进入积分股池: ${formatAmount(burned.toString())} 积分值 (10%)',
style: const TextStyle(color: _red), style: const TextStyle(color: _green),
), ),
const SizedBox(height: 8), const SizedBox(height: 8),
Text( Text(
@ -941,7 +941,7 @@ class _TradingPageState extends ConsumerState<TradingPage> {
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
const Text( const Text(
'注意: 卖出积分股将扣除10%进入黑洞销毁,此操作不可撤销。', '注意: 卖出积分股将扣除10%进入积分股池,此操作不可撤销。',
style: TextStyle( style: TextStyle(
fontSize: 12, fontSize: 12,
color: _grayText, color: _grayText,