лучшим подходом будет Document Viewer
Document Viewer
Этот плагин предлагает тонкий API для просмотра файлов PDF, которые либо хранятся в папке ресурсов приложения (/ www / *), либов любом другом каталоге файловой системы, доступном через плагин Cordova File.
$ ionic cordova plugin add cordova-plugin-document-viewer
$ npm install --save @ionic-native/document-viewer
import { DocumentViewer } from '@ionic-native/document-viewer';
constructor(private document: DocumentViewer) { }
const options: DocumentViewerOptions = {
title: 'My PDF'
}
this.document.viewDocument('assets/myFile.pdf', 'application/pdf', options)