0

I'm using expo-av to play my videos on my react native app. I have a like system. But when I double tap on my video, it just changes its size.

<Video ref={video}
     source={{uri: item.illustration}}
     useNativeControls
     style={{flex: 1, aspectRatio: 1}}
     resizeMode="cover"
     shouldPlay={true}
     isLooping={false}
/>

1 Answers1

0

Best way I found to do it: set

useNativeControls={false}