Skip to content

Commit

Permalink
Fix padding issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-mayank committed Oct 18, 2024
1 parent 22a6544 commit d5935e3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ class _TournamentDetailOverviewTabState
return Container(
color: context.colorScheme.containerLow,
child: ListView(
padding: EdgeInsets.all(16)
.copyWith(bottom: context.mediaQueryPadding.bottom + 40),
padding: context.mediaQueryPadding.copyWith(top: 0) +
EdgeInsets.symmetric(horizontal: 16).copyWith(bottom: 40),
children: [
_featuredMatchesView(context, widget.tournament.matches),
_keyStatsView(context, widget.tournament.keyStats),
Expand Down

0 comments on commit d5935e3

Please sign in to comment.