A simple PDF viewer. It conveniently uses the iOS WKWebView
, and for Android it uses AndroidPdfViewer
.
Remark This repository is the replacement for madmas/nativescript-pdf-view which was a fork of the original by Merott and will be used with his consent to provide further maintenance of this NativeScript plugin.
npm install @nativescript/pdf
<Page
xmlns="http://schemas.nativescript.org/tns.xsd"
xmlns:pdf="@nativescript/pdf"
loaded="pageLoaded"
>
<pdf:PDFView src="{{ pdfUrl }}" load="{{ onLoad }}" />
</Page>
See the complete example at NativeScript TypeScript: pdf
import { NativeScriptPdfModule } from '@nativescript/pdf/angular'
@NgModule({
imports: [
NativeScriptCommonModule,
...
NativeScriptPdfModule
],
<PDFView [src]="pdfUrl" (load)="onLoad()"></PDFView>
See the complete example at NativeScript Angular: pdf
app.ts
file.registerElement('PDFView', () => require('@nativescript/pdf').PDFView)
<PDFView :src="pdfUrl" row="1" />
app.ts
file.registerElement('pDFView', () => require('@nativescript/pdf').PDFView)
<pDFView src={ pdfUrl } row="1"></pDFView>
See the complete example NativeScript Svelte: pdf
app.ts
file:interface PDFViewAttributes extends ViewAttributes {
src: string
}
declare global {
module JSX {
interface IntrinsicElements {
pdfView: NativeScriptProps<PDFViewAttributes, PDFViewCommon>
}
}
}
registerElement('pdfView', () => require('@nativescript/pdf').PDFView)
<gridLayout class="px-5" columns="*" rows="auto, *">
<button
height="70"
text="Show Another!"
class="text-[#76ABEB] font-bold mt-8 mb-5 text-lg"
onTap={this.changePDF}
>
</button>
<pdfView src={this.state.pdfUrl} row="1" onLoaded={this.onLoaded}></pdfView>
</gridLayout>
You can find the complete example at StackBlitz here.
PDFView.loadEvent
pdfView.src = 'some-pdf-url'
Sets the src of the a pdf file
PDFView.notifyOfEvent(eventName: string, pdfViewRef: WeakRef<Common>)
pdfView.loadPDF(src)
Loads the PDF file at the specified source.