This is a file opener helper(iOS only). It supports:
- open ios File App.
- use other file open.
use yarn
yarn add react-native-ios-file-opener
podfile add
pod 'react-native-ios-file-opener', :podspec => '../node_modules/react-native-ios-file-opener/react-native-ios-file-opener.podspec'
info.plist add permission
<key>UIFileSharingEnabled</key>
<true
<key>LSSupportsOpeningDocumentsInPlace</key>
<true/>
import Helper from 'react-native-ios-file-opener';
...
// open ios file app
Helper.openIOSFileApp();
// open it with another application
const filePath = '';
Helper.openWithFilePath(filePath);
...