diff --git a/lib/presentation/views/main_menu/home_view.dart b/lib/presentation/views/main_menu/home_view.dart index 29da229..f59831c 100644 --- a/lib/presentation/views/main_menu/home_view.dart +++ b/lib/presentation/views/main_menu/home_view.dart @@ -103,14 +103,15 @@ class _HomeViewState extends State { 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(); }, ), ) diff --git a/pubspec.yaml b/pubspec.yaml index 1255a27..2e4273b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.2+73 +version: 0.0.2+75 environment: sdk: ^3.8.1