I am trying to pick multiple images in one time but I am not able to select them. I am using Expo ImagePicker and I am passing allowsMultipleSelection:true props as true but did not selecting multiple photos . Could someone please help me how to achieve my goal .
Thanks
Code
let result = await ImagePicker.launchImageLibraryAsync({
mediaTypes: ImagePicker.MediaTypeOptions.All,
quality: 1,
allowsMultipleSelection: true,
base64: false,
});