Added ui implementation

This commit is contained in:
2026-04-19 22:49:21 +02:00
parent a1398623b0
commit 9a2afbfd3b
8 changed files with 73 additions and 10 deletions

View File

@@ -203,7 +203,11 @@ class _MatchTileState extends State<MatchTile> {
spacing: 6,
runSpacing: 6,
children: players.map((player) {
return TextIconTile(text: player.name, iconEnabled: false);
return TextIconTile(
text: player.name,
suffixText: getNameCountText(player),
iconEnabled: false,
);
}).toList(),
),
],