selectImage.js 256 B

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