nativescript-pdf-view
TypeScript icon, indicating that this package has built-in type declarations

3.0.0-1 • Public • Published

Build Status

npm version

NativeScript PDFView

Remark This repository is a fork of the original by Merott that will be used with his consent to provide further maintenance of this NativeScript plugin.

A minimal PDF view implementation that does only one thing, and that is to display PDF files in the simplest way possible. It conveniently uses the iOS WKWebView, and for Android it uses AndroidPdfViewer.

This plugin does the bare minimum required to render the PDF, no configuration options, and no error handling have been built yet. I welcome all Pull Requests!

My aim is to keep the features consistent across iOS and Android.

Installation

ns plugin add nativescript-pdf-view

Usage

Vanilla NativeScript

<Page
  xmlns="http://schemas.nativescript.org/tns.xsd"
  xmlns:pdf="nativescript-pdf-view"
  loaded="pageLoaded">
  <pdf:PDFView src="{{ pdfUrl }}" load="{{ onLoad }}" />
</Page>

Angular NativeScript

Import in module

import { PDFViewModule } from 'nativescript-pdf-view/angular';
<PDFView [src]="src" (load)="onLoad()"></PDFView>

Demo

Check out the demo folder for a demo application using this plugin. You can run the demo by executing npm run demo.ios and npm run demo.android from the root directory of the project.

Samples

There are sample applications avalable:

Package Sidebar

Install

npm i nativescript-pdf-view

Weekly Downloads

111

Version

3.0.0-1

License

MIT

Unpacked Size

25.7 kB

Total Files

26

Last publish

Collaborators

  • merott
  • madmas