import { VideoView } from "expo-video"; import React from "react"; import { Image, StyleSheet, View } from "react-native"; import { img } from "../../../assets"; const PlaybackVideo = ({ videoUrl, videoPlayer }) => { return ( {!!videoUrl ? ( ) : ( )} ); }; const styles = StyleSheet.create({ container: { ...StyleSheet.absoluteFillObject, }, fill: { width: "100%", height: "100%", }, }); export default PlaybackVideo;