hi, i trying to use this plugin but when image editor is closed the app is freezing for some seconds
my config:
- NativeScript 6
- Angular 8
- Android 9
my source:
const context = imagepicker.create({mode: 'single'});
context.authorize()
.then(() => {
context.present()
.then((selection) => {
selection.forEach((selected) => {
selected.getImageAsync((source) => {
const selectedImgSource = fromNativeSource(source);
new ImageCropper().show(selectedImgSource, {height: 500, width: 500})
.then((args) => {
console.log('success')
})
.catch((e) => {
console.error(e);
})
})
});
})
});
hi, i trying to use this plugin but when image editor is closed the app is freezing for some seconds
my config:
my source: