allowsMultipleSelection in ImagePicker

Hi, I wanted to add an option

{ allowsMultipleSelection: true }

to be able to download several images, but for some reason does not work, can anyone help me?

ImagePicker.launchImageLibraryAsync({ allowsMultipleSelection: true }).then((data) => {
if (data) {
console.log(data);
}
})

1 Like

According to the docs, allowsMultipleSelection is not a valid option:

https://docs.expo.io/versions/v34.0.0/sdk/imagepicker/#arguments

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.