pdf_viewer_jk 2.1.4 copy "pdf_viewer_jk: ^2.1.4" to clipboard
pdf_viewer_jk: ^2.1.4 copied to clipboard

discontinued
outdated

A flutter plugin for viewing PDF files in mobile app (Android & iOS).

pdf_viewer_jk #

A flutter plugin for viewing PDF files in mobile app (Android & iOS). based on https://github.com/CrossPT/flutter_plugin_pdf_viewer Also, upgrades made by Damodar Lohani - https://github.com/CrossPT/flutter_plugin_pdf_viewer/pull/63 are added.

Installation #

Add pdf_viewer_jk as a dependency in your pubspec.yaml file.

pdf_viewer_jk: any

Android #

No permissions required. Uses application cache directory.

iOS #

No permissions required.

How-to: #

Load PDF

// Load from assets
PDFDocument doc = await PDFDocument.fromAsset('assets/test.pdf');

// Load from URL
PDFDocument doc = await PDFDocument.fromURL('http://www.africau.edu/images/default/sample.pdf');

// Load from file
File file  = File('...');
PDFDocument doc = await PDFDocument.fromFile(file);

Load pages

// Load specific page
PDFPage pageOne = await doc.get(page: _number);

Pre-built viewer

Use the pre-built PDF Viewer

@override
  Widget build(BuildContext context) {
    Scaffold(
        appBar: AppBar(
          title: Text('Example'),
        ),
        body: Center(
        child: _isLoading
            ? Center(child: CircularProgressIndicator())
            : PDFViewer(document: document)),
    );
  }
16
likes
70
pub points
68%
popularity

Publisher

verified publisherjawad.pro

A flutter plugin for viewing PDF files in mobile app (Android & iOS).

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

async, flutter, flutter_cache_manager, flutter_spinbox, flutter_svg, http, path, path_provider, pool

More

Packages that depend on pdf_viewer_jk