fix(ui): 恢复同伴下贡献值统计卡片的两行布局
- 恢复"已解锁上"项(去掉"级"字) - 保持两行四项布局:引荐人数、已解锁上、已解锁下、是否参与 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
33bf14b225
commit
9fb51fa30a
|
|
@ -554,7 +554,7 @@ class ContributionPage extends ConsumerWidget {
|
||||||
style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold, color: AppColors.textPrimaryOf(context)),
|
style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold, color: AppColors.textPrimaryOf(context)),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
// 统计项
|
// 第一行
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
_buildTeamStatItem(
|
_buildTeamStatItem(
|
||||||
|
|
@ -565,6 +565,19 @@ class ContributionPage extends ConsumerWidget {
|
||||||
isLoading,
|
isLoading,
|
||||||
),
|
),
|
||||||
const SizedBox(width: 16),
|
const SizedBox(width: 16),
|
||||||
|
_buildTeamStatItem(
|
||||||
|
context,
|
||||||
|
'已解锁上',
|
||||||
|
'15',
|
||||||
|
'',
|
||||||
|
isLoading,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
// 第二行
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
_buildTeamStatItem(
|
_buildTeamStatItem(
|
||||||
context,
|
context,
|
||||||
'已解锁下',
|
'已解锁下',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue