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.
This commit is contained in:
tapframe 2025-06-20 19:00:59 +05:30
parent ddf8d007b7
commit a5799c2f62

View file

@ -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%',