import React, { useRef, useState } from 'react'; import { View, StyleSheet, Dimensions } from 'react-native'; import { Video, ResizeMode, AVPlaybackStatus } from 'expo-av'; const { width } = Dimensions.get('window'); const VIDEO_HEIGHT = width * 0.5625; interface Props { uri: string; } export function NativeVideoPlayer({ uri }: Props) { const videoRef = useRef