How can I read or download a pdf in react native?

0

I want to be able to visualize or otherwise download a pdf using react native . I was testing the react-native-pdf library but I get an error, I think it's because it asks me to do npm link and this command has presented problems, I'm using expo to be able to test my app.

    
asked by Leandro Villalobos 09.01.2018 в 13:41
source

1 answer

0

If what you want is to view a pdf file that is on the internet (not local), you can use a small "hack" with google drive.

<WebView source={{ uri: 'https://drive.google.com/viewerng/viewer?embedded=true&url=url/archiv.pdf' }} />

Here is an example with expo:

exposnack

I hope someone helps you.

Reference link

    
answered by 28.02.2018 / 03:07
source