# react-native-ios-file-opener-master **Repository Path**: weyque/react-native-ios-file-opener-master ## Basic Information - **Project Name**: react-native-ios-file-opener-master - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-04-28 - **Last Updated**: 2023-04-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # react-native-ios-file-opener [![npm version](https://img.shields.io/npm/v/react-native-ios-file-opener.svg?style=flat)](https://www.npmjs.com/package/react-native-ios-file-opener) This is a file opener helper(iOS only). It supports: 1. open ios File App. 2. use other file open. ## install use yarn ``` yarn add react-native-ios-file-opener ``` ## iOS Environment 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 ``` UIFileSharingEnabled LSSupportsOpeningDocumentsInPlace ``` ## How to use ``` import Helper from 'react-native-ios-file-opener'; ... // open ios file app Helper.openIOSFileApp(); // open it with another application const filePath = ''; Helper.openWithFilePath(filePath); ... ```