From 913bd9b1da6d91e09023651d97d702a7ce9ce64a Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Mon, 29 Jun 2026 09:20:01 +0200 Subject: [PATCH] fix(tv): add top padding so search filter badges aren't clipped The filter badges are the first row in the results ScrollView; their focus-scale animation and shadow extended above the ScrollView's top edge and got clipped. Add paddingTop to the content container. Claude-Session: https://claude.ai/code/session_016Hhu5DruGLPhdP4LAoy1Xd --- components/search/TVSearchPage.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/search/TVSearchPage.tsx b/components/search/TVSearchPage.tsx index 264f5c28..08b37592 100644 --- a/components/search/TVSearchPage.tsx +++ b/components/search/TVSearchPage.tsx @@ -280,6 +280,9 @@ export const TVSearchPage: React.FC = ({ showsVerticalScrollIndicator={false} keyboardDismissMode='on-drag' contentContainerStyle={{ + // Top padding so the focus-scale/shadow on the first row (filter + // badges) isn't clipped against the ScrollView's top edge. + paddingTop: 16, paddingBottom: insets.bottom + 60, }} >