0.0.2 • Published 3 years ago

react-native-open-pdf v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

react-native-open-pdf

Open a pdf file or url that resolves to one using android native app ONLY FOR ANDROID

For a similar behaviour for ios, I recommend react-native-inappbrowser-reborn

Getting started

$ npm install react-native-open-pdf --save

Usage

Open a local file

import OpenPdf from 'react-native-open-pdf';

const path = 'http://www.math.hawaii.edu/~pavel/gcd.pdf';
OpenPdf.open(path);

API

open(path: string, options?: Object): Promise<void>

ParameterTypeDescription
pathstringThe absolute path where the file is stored or an url pointing to a pdf file
options (optional)ObjectSome options to customize the behaviour. See below.

Options

ParameterTypeDescription
chooserTitle (optional)stringDefault to "Open with"