Fixed state issue in home view
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m2s
Pull Request Pipeline / lint (pull_request) Successful in 2m3s

This commit is contained in:
2026-01-10 15:13:56 +01:00
parent 595cf6ead0
commit c4f6749882
2 changed files with 4 additions and 3 deletions

View File

@@ -103,14 +103,15 @@ class _HomeViewState extends State<HomeView> {
compact: true,
width: constraints.maxWidth * 0.9,
match: match,
onTap: () {
Navigator.of(context).push(
onTap: () async {
await Navigator.of(context).push(
MaterialPageRoute(
fullscreenDialog: true,
builder: (context) =>
MatchResultView(match: match),
),
);
loadHomeViewData();
},
),
)