fix: nav bar overlapping content on detail screens

close #283
This commit is contained in:
edde746
2026-02-01 12:57:07 +01:00
parent cd2b29e0d5
commit 1e4a054677
2 changed files with 10 additions and 0 deletions
+5
View File
@@ -1589,6 +1589,11 @@ class _MediaDetailScreenState extends State<MediaDetailScreen> with WatchStateAw
),
),
),
SliverPadding(
padding: EdgeInsets.only(
bottom: MediaQuery.of(context).padding.bottom,
),
),
],
),
// Sticky top bar with fading background
+5
View File
@@ -237,6 +237,11 @@ class _SeasonDetailScreenState extends State<SeasonDetailScreen> with ItemUpdata
);
}, childCount: _episodes.length),
),
SliverPadding(
padding: EdgeInsets.only(
bottom: MediaQuery.of(context).padding.bottom,
),
),
],
),
),