I'm trying to display an Alert message when the video is done loading, but this event doesn't seem to be firing; I've seen that other people have had similar issues, but I haven't been able to find a solution yet.
<Video
onLoad={() => Alert.alert("LOADING")}
ref={video}
style={styles.video}
source={{
uri: "www.myvideo.com",
}}
repeat
/>