MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
2 changed files with 3 additions and 9 deletions
Showing only changes of commit 69effa2b7d - Show all commits

View File

@@ -90,15 +90,9 @@
} }
} }
}, },
"winner": "Winner: {winnerName}", "winner": "Winner",
"@winner": { "@winner": {
"description": "Shows the winner's name", "description": "Winner label",
"placeholders": {
"winnerName": {
"type": "String",
"example": "John"
}
}
}, },
"players": "Players", "players": "Players",
"@players": { "@players": {

View File

@@ -99,7 +99,7 @@ class _MatchTileState extends State<MatchTile> {
const SizedBox(width: 8), const SizedBox(width: 8),
Expanded( Expanded(
child: Text( child: Text(
loc.winner(winner.name), "${loc.winner}: ${winner.name}",
style: const TextStyle( style: const TextStyle(
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,