Im facing videohas no proptype for native proprctvideo.onvideoaudiobecomingnoisyof native typebool` in react native af player
in android its work fine problem occurs in IOS platform
your help is highly appreciated. Thanks
return (
<View style={styles.container}>
<View>
<Video
onFullScreen={status => this.onFullScreen(status)}
fullScreenOnly={true}
placeholder={placeholder}
//url={videoUrl}
url={detailedWorkout.videoLink}
rotateToFullScreen={true}
theme={theme}
volume={1}
/>
</View>
{content}
</View>
);

This error message is likely caused by an issue with the Video component that you are using. The Video component in React Native does not have a prop called onFullScreen or rotateToFullScreen.
One possible solution could be to use a different video player library that supports these props, such as react-native-af-video-player.
Alternatively, you could try removing these props from your code and see if that resolves the issue. If you still need the functionality of these props, you may need to implement it yourself or look for a different video player library that supports it.
It's also worth noting that the Video component in React Native does not have a prop called theme. You should remove this prop from your code to avoid any issues.