MatchSummaryTile durch MatchTile ersetzen #142

Merged
flixcoo merged 17 commits from enhancement/137-matchsummarytile-durch-matchtile-ersetzen into development 2026-01-10 15:05:43 +00:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit c4f6749882 - Show all commits

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();
},
),
)

View File

@@ -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