Created
February 5, 2020 14:04
-
-
Save diaraujo13/482764615d272c3cdba8d14e27d7e3ef to your computer and use it in GitHub Desktop.
PDF Reader in React Native
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import PDFReader from "rn-pdf-reader-js" | |
const PDF = (file) => { | |
const uri = File.path(file.url); | |
return <PDFReader source={{ uri }} withScroll={true} /> | |
}; | |
export default PDF; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment