hhunaid / react-native-image-crop-tools

Native-ish Image Crop Tools for react native
171 stars 58 forks source link

Fix crash #54

Open ugar0ff opened 2 years ago

ugar0ff commented 2 years ago

Good Day! I found crash, and this code helped me:

override fun createViewInstance(reactContext: ThemedReactContext): CropImageView { val view = CropImageView(reactContext) view.setOnCropImageCompleteListener { _, result -> if (result.isSuccessful && result.cropRect != null) { val map = Arguments.createMap() map.putString("uri", result.uri.toString()) map.putInt("width", result.cropRect.width()) map.putInt("height", result.cropRect.height()) reactContext.getJSModule(RCTEventEmitter::class.java)?.receiveEvent( view.id, ON_IMAGE_SAVED, map ) } } return view }

Add this fix to this library

hhunaid commented 2 years ago

Please test on latest version