双击时防止 expo Video 调整大小
Prevent expo Video from resizing when double tapping
我正在使用 expo-av 在我的 React 本机应用程序上播放我的视频。
我有一个类似的系统。但是当我双击我的视频时,它只是改变了它的大小。
<Video ref={video}
source={{uri: item.illustration}}
useNativeControls
style={{flex: 1, aspectRatio: 1}}
resizeMode="cover"
shouldPlay={true}
isLooping={false}
/>
我发现的最佳方法:
设置
useNativeControls={false}
我正在使用 expo-av 在我的 React 本机应用程序上播放我的视频。 我有一个类似的系统。但是当我双击我的视频时,它只是改变了它的大小。
<Video ref={video}
source={{uri: item.illustration}}
useNativeControls
style={{flex: 1, aspectRatio: 1}}
resizeMode="cover"
shouldPlay={true}
isLooping={false}
/>
我发现的最佳方法: 设置
useNativeControls={false}