itsnubix/react-native-video-controls

Using paused prop causes video to pause on fullscreen toggle

Opened this issue · 1 comments

<VideoPlayer
    source = {{ uri: my_file_link }}
    disableVolume
    disableBack
    paused
    onEnterFullscreen = {this.handleEnterFullscreen}
    onExitFullscreen  = {this.handleExitFullScreen}
    toggleResizeModeOnFullscreen = {false}
/>

Using this code causes the app to pause everytime the user enters / exits fullscreen on Android.
Without the paused prop everything works fine... but video starts playing on its own after load and I require the video to play ONLY if the user needs it to.

Seems like there is an issue with the pause props from the react-native-video npm.