This commit is contained in:
sion
2026-04-23 00:44:39 +08:00
parent 685202dd55
commit 8047cfaa76
209 changed files with 2660 additions and 5560 deletions

View File

@@ -305,7 +305,7 @@ class _WelfareCenterPageState extends State<WelfareCenterPage> {
),
const SizedBox(height: 12),
Text(
'+100 USDT',
'+${newUserBonus?['amount'] ?? '100'} USDT',
style: AppTextStyles.displayLarge(context).copyWith(
fontWeight: FontWeight.w800,
color: claimed ? Theme.of(context).colorScheme.onSurfaceVariant : profitGreen,
@@ -809,7 +809,7 @@ class _WelfareCenterPageState extends State<WelfareCenterPage> {
style: AppTextStyles.headlineSmall(context),
),
const SizedBox(height: 8),
_buildRuleItem('新用戶首次充值完成後可領取 100 USDT一次性'),
_buildRuleItem('充值金額每滿 1,000 USDT 獎勵 100 USDT如充值 3,000 領取 300'),
_buildRuleItem('邀請好友累計充值每滿 1,000 USDT獎勵 100 USDT最多8次/人)'),
_buildRuleItem('好友推廣的用戶充值每滿 1,000 USDT額外獎勵 50 USDT最多8次/人)'),
_buildRuleItem('獎勵直接發放至資金賬戶'),
@@ -843,7 +843,7 @@ class _WelfareCenterPageState extends State<WelfareCenterPage> {
if (response.success) {
context.read<AssetProvider>().refreshAll(force: true);
context.read<AppEventBus>().fire(AppEventType.assetChanged);
ToastUtils.showSuccess('領取成功!100 USDT 已到賬');
ToastUtils.showSuccess('領取成功!獎勵已到賬');
_loadData();
} else {
ToastUtils.showError(response.message ?? '領取失敗');
@@ -865,7 +865,7 @@ class _WelfareCenterPageState extends State<WelfareCenterPage> {
if (response.success) {
context.read<AssetProvider>().refreshAll(force: true);
context.read<AppEventBus>().fire(AppEventType.assetChanged);
ToastUtils.showSuccess('領取成功!100 USDT 已到賬');
ToastUtils.showSuccess('領取成功!獎勵已到賬');
_loadData();
} else {
ToastUtils.showError(response.message ?? '領取失敗');