GameHistoryView anpassen #20

Merged
flixcoo merged 27 commits from feature/2-gamehistoryview-anpassen into development 2025-11-30 15:59:25 +00:00
Showing only changes of commit 8c005d6e5e - Show all commits

View File

@@ -103,13 +103,16 @@ class _GameHistoryTileState extends State<GameHistoryTile> {
color: Colors.amber, color: Colors.amber,
), ),
const SizedBox(width: 8), const SizedBox(width: 8),
Text( Expanded(
child: Text(
'Winner: ${winner.name}', 'Winner: ${winner.name}',
style: const TextStyle( style: const TextStyle(
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: Colors.white, color: Colors.white,
), ),
overflow: TextOverflow.ellipsis,
),
), ),
], ],
), ),