I am working on react native application and I am using expo lib. I want functionality to select multiple images from gallery but I am failed because I am new to React Native . Could someone please help me how to select multiple images in expo .
code
let result = await ImagePicker.launchImageLibraryAsync({
mediaTypes: ImagePicker.MediaTypeOptions.All,
quality: 1,
allowsMultipleSelection: true,
base64: false,
});