Reputation: 2519
i am already try with this plugin but no luck
how to achieve like this
https://ionicframework.com/docs/native/file-opener
https://ionicframework.com/docs/native/document-viewer
Upvotes: 1
Views: 6083
Reputation: 432
You can use PDF.js component: https://mozilla.github.io/pdf.js/
Here is a video of PDF.js component wrapped as Appery.io plugin https://www.youtube.com/watch?v=JeEJl7K-2H0
Upvotes: 0
Reputation: 1029
You can also directly open the PDF by using window.open
window.open(this.URL + name +'.pdf');
It will work.
Upvotes: 0
Reputation: 336
Here is Ionic 5 Repo with PDF View without download
How to run :
npm i
npm start
For More set PDF Options
Upvotes: 1