You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let opts = {
doneButtonTitle: 'done', // only affects ios
noImagesTitle: 'No Images', // only affects ios
allowVideoSelection: false, // only affects ios
imageLimit: 1
}
radImagepicker.pick(opts).then((selectedImages) => {
if (selectedImages) {
// Do something with selected images
// currently
// the image will be of type nativescript image source
// tns-core-modules/image-source
console.log("data", JSON.stringify(selectedImages))
}
});
After choosing image, the returned data (selectedImages) is :
'data' '[{"_rotationAngle":0,"android":{}}]'
It is empty in the object android. Hence, no image can be shown or read in app.
May I know is this how it work?
The text was updated successfully, but these errors were encountered:
When using nativescript-rad-imagepicker
After choosing image, the returned data (selectedImages) is :
It is empty in the object android. Hence, no image can be shown or read in app.
May I know is this how it work?
The text was updated successfully, but these errors were encountered: