Video player

Play a video from URL

<Box bg="black" style.width="100%" style.aspectRatio={data.videoAspectRatio}>
    <Video 
        source.uri={data.videoUrl} 
        style.width="100%"
        style.height={"100%"}
        resizeMode={data.videoResizeMode}
        repeat={true}
        muted={true}
    />
</Box>
Loading...