I am using react-native-pdf-view library to display pdf in react-native.Following is the render method of the component.
return <PDFView ref={(pdf)=>{this.pdfView = pdf;}}
path={"orimi.com/pdf-test.pdf"}
onLoadComplete = {(pageCount)=>{
this.pdfView.setNativeProps({
zoom: 1.5
});
}}
style={styles.pdf}/>
But this throws the following error:

Can someone please let me know what I am doing wrong?
No responses yet.