Shiva Prasad
Shiva Prasad
have you tried using a setTimeout before calling the cropper?
https://github.com/bthurlow/nativescript-imagecropper/issues/49#issuecomment-570948851
@rjbhatt110 can you check if image cropper can be opened from inside a modal page with your changes? :)
Hi @alexandruantonica I can see that uCrop allows rounded mask https://github.com/Yalantis/uCrop your feature request will be considered
I'm using this cropper on devices running API 28 with no issues, haven't tried it on 29
The version of this plugin at npm.proplugins.org already uses the updated Android X lib. But for this public version, I welcome any incoming PRs (after I reveiw it)
Hi Marco, that is the expected log output when you log the response from this plugin. The image object can't be displayed in the console. And what you've sent there...
https://github.com/bthurlow/nativescript-imagecropper/blob/master/service-example/image-upload-service.js this file has a good example of how the response from this plugin can be used. I'm currently using the exact same code with the latest version of nativescript...
since you're using typescript, you'll have to declare those variables outside the constructor before using them. so below the line `export class ImageUploadService...` you can add ``` static _instance: ImageUploadService;...
 You can see here that I'm unboxing the selection before using it. looking at your core you're doing `const selection = await ...` so you can do ``` if...