mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 17:16:00 +00:00
8 lines
256 B
JavaScript
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
|