Skip to content

Commit 65df44e

Browse files
committed
Remove redundant title text overlays from movie content
The banner images already contain the movie title/logo, so the text overlays were redundant. This follows standard media app practices where the title is embedded in the banner image itself.
1 parent 219ccaf commit 65df44e

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

packages/shared-ui/src/screens/HomeScreen.tsx

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ const MovieItem = React.memo(
4444
onError={(error) => console.log('Image load error:', item.title, error.nativeEvent.error)}
4545
onLoad={() => console.log('Image loaded:', item.title)}
4646
/>
47-
<View style={styles.thumbnailTextContainer}>
48-
<Text style={styles.thumbnailText} numberOfLines={2}>{item.title}</Text>
49-
</View>
5047
</View>
5148
);
5249
},
@@ -102,19 +99,6 @@ export default function HomeScreen() {
10299
source={headerImageSource}
103100
resizeMode="cover"
104101
/>
105-
{/* Linear gradient scrim for left overlay */}
106-
<PlatformLinearGradient
107-
colors={['rgba(0,0,0,0.9)', 'rgba(0,0,0,0.7)', 'rgba(0,0,0,0.3)', 'transparent']}
108-
start={{ x: 0, y: 0 }}
109-
end={{ x: 1, y: 0 }}
110-
style={gridStyles.gradientLeft}
111-
/>
112-
<View style={gridStyles.headerTextContainer}>
113-
<Text style={gridStyles.headerTitle}>{focusedItem.title}</Text>
114-
<Text style={gridStyles.headerDescription} numberOfLines={3}>
115-
{focusedItem.description}
116-
</Text>
117-
</View>
118102
</View>
119103
);
120104
},

0 commit comments

Comments
 (0)