Compare commits
2 Commits
2c4cef76d8
...
d22855fc1a
| Author | SHA1 | Date | |
|---|---|---|---|
| d22855fc1a | |||
| 1be86bc3c5 |
@@ -78,22 +78,25 @@ class _MatchViewState extends State<MatchView> {
|
|||||||
height: MediaQuery.paddingOf(context).bottom - 20,
|
height: MediaQuery.paddingOf(context).bottom - 20,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return Padding(
|
return Center(
|
||||||
padding: const EdgeInsets.only(bottom: 12.0),
|
child: Padding(
|
||||||
child: MatchTile(
|
padding: const EdgeInsets.only(bottom: 12.0),
|
||||||
onTap: () async {
|
child: MatchTile(
|
||||||
Navigator.push(
|
width: MediaQuery.sizeOf(context).width * 0.95,
|
||||||
context,
|
onTap: () async {
|
||||||
CupertinoPageRoute(
|
Navigator.push(
|
||||||
fullscreenDialog: true,
|
context,
|
||||||
builder: (context) => MatchResultView(
|
CupertinoPageRoute(
|
||||||
match: matches[index],
|
fullscreenDialog: true,
|
||||||
onWinnerChanged: loadGames,
|
builder: (context) => MatchResultView(
|
||||||
|
match: matches[index],
|
||||||
|
onWinnerChanged: loadGames,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
);
|
||||||
);
|
},
|
||||||
},
|
match: matches[index],
|
||||||
match: matches[index],
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -58,11 +58,7 @@ class _MatchTileState extends State<MatchTile> {
|
|||||||
margin: EdgeInsets.zero,
|
margin: EdgeInsets.zero,
|
||||||
width: widget.width,
|
width: widget.width,
|
||||||
padding: const EdgeInsets.all(12),
|
padding: const EdgeInsets.all(12),
|
||||||
decoration: BoxDecoration(
|
decoration: CustomTheme.standardBoxDecoration,
|
||||||
color: CustomTheme.boxColor,
|
|
||||||
border: Border.all(color: CustomTheme.boxBorder),
|
|
||||||
borderRadius: BorderRadius.circular(12),
|
|
||||||
),
|
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
name: game_tracker
|
name: game_tracker
|
||||||
description: "Game Tracking App for Card Games"
|
description: "Game Tracking App for Card Games"
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
version: 0.0.2+57
|
version: 0.0.2+70
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.8.1
|
sdk: ^3.8.1
|
||||||
|
|||||||
Reference in New Issue
Block a user