react-native-image-crop-picker icon indicating copy to clipboard operation
react-native-image-crop-picker copied to clipboard

App crash when crop functionality triggers in API Level 36. Crop is not working.

Open dalvimyzow opened this issue 2 months ago • 5 comments

here is my code :

if (option === "camera") { image = await ImageCropPicker.openCamera({ width: 1000, height: 1000, cropping: true, useFrontCamera: true, includeBase64: true, }); } else { image = await ImageCropPicker.openPicker({ width: 1000, height: 1000, cropping: true, freeStyleCropEnabled: true, includeBase64: true, }); }

dalvimyzow avatar Oct 08 '25 11:10 dalvimyzow