I have videos that I want to make loop infinitely.
I set the repeat prop to true and it works perfectly on Android, the video loops infinitely.
But on iOS, the video stops after 3 loops and the player turns to a black screen.
Try to loop a video more than 3 times on iOS
I'm having the same issue. This worked for me though.
onEnd={() => {
this.video.seek(0)
}}
And make sure repeat is set to false
repeat={false}
Hope this helps
Most helpful comment
I'm having the same issue. This worked for me though.
And make sure repeat is set to false
repeat={false}Hope this helps