expo-av on background

import { Video } from ‘expo-av’;

return (

<Video
source={{
uri: item.videoURL
}}
rate={1.0}
volume={1.0}
isMuted={false}
resizeMode=“cover”
isLooping
useNativeControls
style={{ …styles.image, …{ width: ‘100%’, height: 500 } }}
onLoad={() => setIsLoading(false)}
/>
{renderActivityIndicator()}

);

Hello, im using expo_av to play some videos but for some reason when y change screens on iOS videos keeps playing on the background. Is there a workaround for this issue just for iOS?