I'm using image picker expo to access my gallery or photos. I want to get the full photo not cropped to be displayed on image here is my code:
const image = await ImagePicker.launchImageLibraryAsync({
mediaTypes: ImagePicker.MediaTypeOptions.All,
allowsEditing: true,
aspect: [1, 1],
quality: 1,
});
if (!image.cancelled) {
setPickedImage(image.uri);
setModalVisible(false);
}
};