Skip to content

Commit

Permalink
Merge branch 'main' into chore/upgrade-flutter
Browse files Browse the repository at this point in the history
  • Loading branch information
jsgalarraga authored May 22, 2024
2 parents ea0f660 + ed23f41 commit 22ee995
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions lib/leaderboard/view/leaderboard_success.dart
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ class CurrentUserPosition extends StatelessWidget {
children: [
Text(
'${l10n.you}:',
style: theme.io.textStyles.body4,
style: theme.io.textStyles.body4.medium?.copyWith(
color: IoCrosswordColors.softGray,
),
),
UserLeaderboardRanking(
player: player,
Expand Down Expand Up @@ -186,9 +188,12 @@ class UserLeaderboardRanking extends StatelessWidget {
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
rank.toDisplayNumber(),
style: themeData.io.textStyles.body4,
SizedBox(
width: 45,
child: Text(
rank.toDisplayNumber(),
style: themeData.io.textStyles.body4,
),
),
IoWord(
player.initials,
Expand Down

0 comments on commit 22ee995

Please sign in to comment.