nativescript-pdf-view-bundling-enabled
A NativeScript plugin to display PDF files on iOS and Android
npm i --save nativescript-pdf-view-bundling-enabled
- Version: 1.2.1
- GitHub: https://github.com/corne-de-bruin/nativescript-pdf-view
- NPM: https://www.npmjs.com/package/nativescript-pdf-view-bundling-enabled
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
nativescript-pdf-view
This is a very basic PDF view implementation that does only one thing, and
that is to display PDF files. It conveniently uses the iOS UIWebView
, but
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!
Usage
Check out the demo folder for a sample usage.
Angular 2
If you're using the plugin with Angular 2, the plugin automatically registers
PDFView
as a valid tag for Angular templates. Usage is simple:
- Make sure to import
nativescript-pdf-view
somewhere in your code, e.g:
import 'nativescript-pdf-view';
- Include the tag in your template:
<PDFView [src]="src" (load)="onLoad()"></PDFView>
Try the Demo
To try the demo, cd
into the demo
folder, and run the following commands:
npm install
# iOS
tns platform add ios
tns run ios
# Android
tns platform add android
tns run android