uppy/packages/@uppy/react-native/file-picker/selectImage.js
2023-01-05 11:48:48 +01:00

8 lines
256 B
JavaScript

import * as ImagePicker from 'expo-image-picker'
function selectImageWithExpo (options) {
// No permissions request is necessary for launching the image library
return ImagePicker.launchImageLibraryAsync(options)
}
export default selectImageWithExpo