Show leveling BonusMultiplier

This commit is contained in:
2025-08-22 17:58:28 +08:00
parent c90e6fe661
commit 9e40ed4600
4 changed files with 35 additions and 22 deletions

View File

@@ -194,8 +194,15 @@ class LevelingScreen extends HookConsumerWidget {
).opacity(0.8),
],
),
subtitle: Text(
'${record.delta > 0 ? '+' : ''}${record.delta} EXP',
subtitle: Row(
spacing: 8,
children: [
Text(
'${record.delta > 0 ? '+' : ''}${record.delta} EXP',
),
if (record.bonusMultiplier != 1.0)
Text('x${record.bonusMultiplier}'),
],
),
minTileHeight: 56,
contentPadding: EdgeInsets.symmetric(horizontal: 4),