add textoverflow behaviour
Some checks failed
Pull Request Pipeline / test (pull_request) Successful in 2m5s
Pull Request Pipeline / lint (pull_request) Failing after 2m8s

This commit is contained in:
2025-11-25 22:03:38 +01:00
parent 479e9a2575
commit 86ec4de5c0

View File

@@ -34,7 +34,11 @@ class _GameResultViewState extends State<GameResultView> {
scrolledUnderElevation: 0, scrolledUnderElevation: 0,
title: Text( title: Text(
widget.game.name, widget.game.name,
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold), style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
overflow: TextOverflow.ellipsis,
),
), ),
centerTitle: true, centerTitle: true,
), ),