react-native-video-controls
                                
                                 react-native-video-controls copied to clipboard
                                
                                    react-native-video-controls copied to clipboard
                            
                            
                            
                        Seekbar incorrect position on Landscape
Seekbar shows wrong position when i rotate(Landscape) the device after the video ends. Seems like seekbar onLayout is not updating while rotating the device (especially when video ends(portrait), rotate device to landscape orientation the seek position is not correct)
"react": "16.0.0-alpha.12", "react-native": "0.46.4", "react-native-video": "^2.0.0"
Tested on Nexus 5X, Lenovo (Android 7.0)
When seeking sometimes seek handle hops back to original position #9 , issues seems to exist still.
I'm seeing an issue when you pause the video, hide controls rotate the phone, show controls and then press play again....likely related. I'll take a look.
@Thanmai-C Once End Reset all the things so your case will never occur with this
_onEnd() {
let state = this.state;
state.paused = true;
this.seekTo(0)
this.setState(state)
this.setSeekerPosition(0)
}