By using webview, I am able to show pdf in iOS, but in android it always shows white screen.
I am using webview to show pdf in my mobile app. In iOS it works fine but in android, it keep on showing white screen. I know there are some packages like react-native-pdf which can do this, but I want to do it through webview. Is it possible if yes then how?
<WebView
source={require('./android/app/src/main/myPdf.pdf')}
/>
It should show pdf in android app, but it is showing white screen everytime.