uppy/examples/react-native-expo/react-native/file-picker/selectDocument.js
2018-12-19 15:45:48 +03:00

13 lines
274 B
JavaScript

import Expo from 'expo'
function selectDocumentWithExpo (options) {
return Expo.DocumentPicker.getDocumentAsync({
copyToCacheDirectory: false
}).then((result) => {
if (!result.cancelled) {
return result
}
})
}
export default selectDocumentWithExpo