MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
Showing only changes of commit 00fd6880e9 - Show all commits

View File

@@ -108,7 +108,9 @@ class _GameResultViewState extends State<GameResultView> {
sizeRelativeToWidth: 0.95, sizeRelativeToWidth: 0.95,
onPressed: _player != null onPressed: _player != null
? () { ? () {
print("Selected Winner: ${_player!.name}"); print(
"Selected Winner: ${_player!.name}",
); //TODO: Add winner to db
Navigator.pop(context); Navigator.pop(context);
} }
: null, : null,