Feature description
I want to know is there any way to open photo in ios
openImagePicker = () => {
this.closeOptionsModal();
setTimeout(() => {
pick({allowMultiSelection: false, type: [types.images]}).then(
(imageObj) => {
this.postProfilePicture(imageObj[0]);
},
);
}, 500);
};
using this code it works on andorid but not work on ios it open the file manager in ios
What platform(s) should this be implemented on?
iOS