2.3.1 • Published 5 years ago

react-native-file-pick v2.3.1

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

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);
});