fix: text alignment

This commit is contained in:
2026-05-10 18:41:34 +02:00
parent 6db265ea99
commit 341b293151

View File

@@ -326,9 +326,10 @@ class _MatchDetailViewState extends State<MatchDetailView> {
), ),
Flexible( Flexible(
child: Container( child: Container(
padding: const EdgeInsets.only(left: 40), padding: const EdgeInsets.only(left: 10),
child: Text( child: Text(
match.mvp.map((player) => player.name).join(', '), match.mvp.map((player) => player.name).join(', '),
textAlign: TextAlign.end,
style: const TextStyle( style: const TextStyle(
fontSize: 16, fontSize: 16,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,