react-native-video-player
react-native-video-player copied to clipboard
Background image shows in android when video is playing
While playing video in android the image is showing which i need to remove what should i do?
<Wrapper style={[styles.postImageStyle, { overflow: 'hidden' }]}>
<VideoPlayer
video={{ uri: videoUri }}
thumbnail={{ uri: generatedThumbnail }}
style={{ width: '100%', height: '100%' }}
showDuration
pauseOnPress
fullScreenOnLongPress
// resizeMode="stretch"
customStyles={{
controls: {
borderBottomLeftRadius: 20,
borderBottomRightRadius: 20,
},
seekBar: {
height: 8,
borderRadius: 4,
overflow: 'hidden',
},
seekBarProgress: {
backgroundColor: COLOR.primaryColor,
},
seekBarKnob: {
backgroundColor: COLOR.primaryColor,
},
}}
/>
</Wrapper>