add todo comment
Some checks failed
Pull Request Pipeline / test (pull_request) Successful in 2m14s
Pull Request Pipeline / lint (pull_request) Failing after 2m17s

This commit is contained in:
2025-11-25 17:24:35 +01:00
parent 649330f358
commit 00fd6880e9

View File

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