I'm trying to play a video in my React-Native application but I just want to use the standard video player that is built into the operating systems. Such as when you are in Safari or Chrome on your phone then you press the play button on a video. I essentially want that in my app but everything I see is telling me use the library called react-native-video
, which from what I can see requires you to completely make your own video player.
Frankly I need something that just takes a url as the source and onPress it opens the native video player built into the operating system. Does anyone know if this is possible?