Good Evening Peers, I am using react-native-image-crop-picker as the library to select photos and videos.
And when I try to open the camera to show both photo and video option I only get the photo option, Not to sure where to go from here.
ImagePicker.openCamera({
mediaType: 'any',
width: Dimensions.get('window').width,
height: Dimensions.get('window').width,
}).then(image => {
console.log(image);
});
I thank you guys in advance!