[Video] Minor player tweaks (#5044)

This commit is contained in:
Samuel Newman
2024-08-30 20:48:23 +01:00
committed by GitHub
parent 8647c8e9f5
commit ab260c3599
5 changed files with 35 additions and 15 deletions
@@ -21,8 +21,8 @@ export function VideoTranscodeBackdrop({uri}: {uri: string}) {
}, [])
return (
<Animated.View style={a.flex_1} entering={FadeIn}>
{thumbnail && (
thumbnail && (
<Animated.View style={a.flex_1} entering={FadeIn}>
<Image
style={a.flex_1}
source={thumbnail.path}
@@ -31,7 +31,7 @@ export function VideoTranscodeBackdrop({uri}: {uri: string}) {
blurRadius={15}
contentFit="cover"
/>
)}
</Animated.View>
</Animated.View>
)
)
}