From a5799c2f6254676a92ac8b28c1175ef58912aebf Mon Sep 17 00:00:00 2001 From: tapframe Date: Fri, 20 Jun 2025 19:00:59 +0530 Subject: [PATCH] Adjust movie title container height and padding for improved layout in StreamsScreen This update modifies the height of the movie title container from 120 to 140 and adjusts the padding for Android devices from 45 to 65. These changes enhance the visual consistency and responsiveness of the layout, contributing to a better user experience. --- src/screens/StreamsScreen.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens/StreamsScreen.tsx b/src/screens/StreamsScreen.tsx index e0b08eed..66807f7d 100644 --- a/src/screens/StreamsScreen.tsx +++ b/src/screens/StreamsScreen.tsx @@ -1717,11 +1717,11 @@ const createStyles = (colors: any) => StyleSheet.create({ }, movieTitleContainer: { width: '100%', - height: 120, + height: 140, backgroundColor: colors.darkBackground, pointerEvents: 'box-none', justifyContent: 'center', - paddingTop: Platform.OS === 'android' ? 45 : 35, + paddingTop: Platform.OS === 'android' ? 65 : 35, }, movieTitleContent: { width: '100%',