View a PDF in React Native
A simple solution for this problem is to set <WebView>
source/uri
to this:
https://drive.google.com/viewerng/viewer?embedded=true&url={your pdf url}’
Okay, for future generations, here's how I solved this problem:
Updated September 13, 2017:
There is a new NPM module that makes this entire process much easier. I would suggest using it going forward instead of my original answer below:
react-native-pdf
Once installed, rendering the PDF is as easy as this:
export default class YourClass extends Component {
constructor(props) {
super(props);
this.pdf = null;
}
render() {
let yourPDFURI = {uri:'bundle-assets://pdf/YourPDF.pdf', cache: true};
return <View style={{flex: 1}}>
<Pdf ref={(pdf)=>{this.pdf = pdf;}}
source={yourPDFURI}
style={{flex: 1}}
onError={(error)=>{console.log(error);}} />
</View>
}
}
Just put your actual pdf in the android/app/src/main/assets/pdf
folder of your project.
Original Answer:
iOS
render: function() {
return <WebView source={{uri: 'My.pdf'}}/>
}
The trick is that you need to include My.pdf
into your project in Xcode and make sure it's added to your build target.
Just copying it into your React Native project folder wasn't enough. It had to be part of the Xcode project itself.
Android
It appears that Android did not provide a native PDF viewer until 5.0 (Lollipop). To get around this, I've had to make use of three key techniques:
- Pull the PDF out of my APK bundle and store it in the
files
folder for my app. This SO answer was very helpful in accomplishing this:
Android: How to copy files from 'assets' folder to sdcard?
I tweaked the code a bit so that the file wasn't going to an sdcard
but to my app's files
folder. Here's what I added to my MainActivity.java
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AssetManager assetManager = getAssets();
String[] files = null;
try {
files = assetManager.list("pdf");
} catch (IOException e) {
Log.e("tag", "Failed to get asset file list.", e);
}
if (files != null) for (String filename : files) {
InputStream in = null;
OutputStream out = null;
try {
in = assetManager.open("pdf/" + filename);
File outFile = new File(getFilesDir(), filename);
out = new FileOutputStream(outFile);
copyFile(in, out);
Log.e("tag", "Copy was a success: " + outFile.getPath());
} catch(IOException e) {
Log.e("tag", "Failed to copy asset file: " + "pdf/" + filename, e);
}
finally {
if (in != null) {
try {
in.close();
} catch (IOException e) {
// NOOP
}
}
if (out != null) {
try {
out.close();
} catch (IOException e) {
// NOOP
}
}
}
}
}
private void copyFile(InputStream in, OutputStream out) throws IOException {
byte[] buffer = new byte[1024];
int read;
while((read = in.read(buffer)) != -1){
out.write(buffer, 0, read);
}
}
I also made sure my PDF is in the assets/pdf
folder under android/app/src/main
I then utilized the react-native-fs package to get the absolute URL to my PDF, which is now in the
files
folder:var RNFS = require('react-native-fs'); var absolutePath = RNFS.DocumentDirectoryPath + '/My.pdf';
With all of this in place, I used react-native-pdf-view to actually load and display the PDF:
import PDFView from 'react-native-pdf-view'; render: function() { var absolutePath = RNFS.DocumentDirectoryPath + '/My.pdf'; return <PDFView ref={(pdf)=>{this.pdfView = pdf;}} src={absolutePath} style={ActharStyles.fullCover} /> }
Good luck!