Implemented compact mode for match tiles

This commit is contained in:
2026-01-09 20:04:10 +01:00
parent a9d2325eee
commit 3d510d5b3d
2 changed files with 63 additions and 2 deletions

View File

@@ -89,6 +89,7 @@ class _HomeViewState extends State<HomeView> {
Padding(
padding: const EdgeInsets.only(top: 8.0),
child: MatchTile(
compact: true,
width: constraints.maxWidth * 0.95,
match: recentMatches[0],
onTap: () {
@@ -105,6 +106,7 @@ class _HomeViewState extends State<HomeView> {
Padding(
padding: const EdgeInsets.only(top: 8.0),
child: MatchTile(
compact: true,
width: constraints.maxWidth * 0.95,
match: recentMatches[1],
onTap: () {