TheWidlarzGroup / react-native-video-player

A video player for React Native with controls
MIT License
514 stars 315 forks source link

disableSeek is not working with fullscreen mode #152

Open NensiKasundra opened 2 years ago

NensiKasundra commented 2 years ago

When I am using disableSeek to true it's not working with fullscreen mode. Seek is showing in fullscreen mode.

 <VideoPlayer
                style={{
                    height: DEVICE_HEIGHT * 0.3,
                    alignSelf: 'center',
                    justifyContent: 'center'
                }}
                disableControlsAutoHide={true}
                disableSeek={true}
                autoplay={true}
                showDuration={true}
                video={{ uri: `https://storage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4` }}
            />

Any Solution for the above one?

NensiKasundra commented 2 years ago

@cornedor Please check.