Implementierung der Games #203

Merged
flixcoo merged 34 commits from feature/119-implementierung-der-games-2 into development 2026-05-09 17:13:46 +00:00
Showing only changes of commit 0d1ed3e666 - Show all commits

View File

@@ -176,6 +176,10 @@ class _ChooseGameViewState extends State<ChooseGameView> {
} }
if (result.delete) { if (result.delete) {
setState(() { setState(() {
// deselect the game
if (selectedGameId == game.id) {
selectedGameId = '';
}
widget.games.removeAt(originalIndex); widget.games.removeAt(originalIndex);
widget.onGamesUpdated?.call(); widget.onGamesUpdated?.call();
}); });