2 Commits

Author SHA1 Message Date
132966f3d2 increase title_description_list_tile width to make german translation fully visible
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m9s
Pull Request Pipeline / lint (pull_request) Successful in 2m23s
2026-01-02 21:28:46 +01:00
77095725de fix game choose view highlighting not working 2026-01-02 21:26:54 +01:00
2 changed files with 2 additions and 1 deletions

View File

@@ -69,6 +69,7 @@ class _ChooseGameViewState extends State<ChooseGameView> {
widget.games[index].$3,
context,
),
isHighlighted: selectedGameIndex == index,
onPressed: () async {
setState(() {
if (selectedGameIndex == index) {

View File

@@ -54,7 +54,7 @@ class TitleDescriptionListTile extends StatelessWidget {
if (badgeText != null) ...[
const Spacer(),
Container(
constraints: const BoxConstraints(maxWidth: 100),
constraints: const BoxConstraints(maxWidth: 115),
margin: const EdgeInsets.only(top: 4),
padding: const EdgeInsets.symmetric(
vertical: 2,