From d5935e33cac2359be7dac79932078dbdebc32c7b Mon Sep 17 00:00:00 2001 From: Mayank Variya Date: Fri, 18 Oct 2024 11:12:28 +0530 Subject: [PATCH] Fix padding issue --- .../detail/tabs/tournament_detail_overview_tab.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/khelo/lib/ui/flow/tournament/detail/tabs/tournament_detail_overview_tab.dart b/khelo/lib/ui/flow/tournament/detail/tabs/tournament_detail_overview_tab.dart index 898664aa..f1e031af 100644 --- a/khelo/lib/ui/flow/tournament/detail/tabs/tournament_detail_overview_tab.dart +++ b/khelo/lib/ui/flow/tournament/detail/tabs/tournament_detail_overview_tab.dart @@ -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),