react-native-video-player icon indicating copy to clipboard operation
react-native-video-player copied to clipboard

Background image shows in android when video is playing

Open oneeb-asad opened this issue 5 months ago • 0 comments

WhatsApp Image 2024-09-04 at 16 32 28 (1)

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>

oneeb-asad avatar Sep 04 '24 11:09 oneeb-asad