I'm using react-native-video
in react-native v0.69
withing nx monorepo and when trying to add Video component like below, I get an error TypeError: undefined is not an object (evaluating '_reactNative.Image.propTypes.resizeMode'
.
import Video from 'react-native-video'
<Video
resizeMode="none"
source={{ uri: _.url }}
style={{ width: 64, height: 64 }}
/>
When i remove resizeMode
prop I get same error.
What is causing this?