react-native-open-pdf
Version:
Open pdf files using native app for Android
24 lines (19 loc) • 456 B
JavaScript
import { NativeModules } from 'react-native';
const { RNOpenPdf } = NativeModules;
function open(
path,
options = { chooserTitle: 'Open with' }
) {
return RNOpenPdf.open(normalize(path), options);
}
function normalize(path) {
const filePrefix = "file://";
if (path.startsWith(filePrefix)) {
path = path.substring(filePrefix.length);
try {
path = decodeURI(path);
} catch (e) {}
}
return path;
}
export default { open };