react-native-file-pick
v2.3.1
Published
A react native interface to access Documents from dropbox google drive, iCloud
Downloads
9
Maintainers
Readme
react-native-file-pick
Installation
npm i --save react-native-file-pick
react-native link react-native-file-pick
Example
import { FilePicker, FilePickerUtil } from 'react-native-file-pick';
// iPhone/Android
FilePicker.show({
filetype: [FilePickerUtil.images()],
},(error,res) => {
// Android
console.log(
res.uri,
res.type, // mime type
res.fileName,
res.fileSize
);
});
// iPad
const {pageX, pageY} = event.nativeEvent;
FilePicker.show({
top: pageY,
left: pageX,
filetype: ['public.image'],
}, (error, url) => {
alert(url);
});