pdf_viewer_jk 1.0.1 copy "pdf_viewer_jk: ^1.0.1" to clipboard
pdf_viewer_jk: ^1.0.1 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

Installation #

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

pdf_viewer_jk: any
copied to clipboard

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);
copied to clipboard

Load pages

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

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)),
    );
  }
copied to clipboard
16
likes
0
points
114
downloads

Publisher

verified publisherjawad.pro

Weekly Downloads

2024.09.18 - 2025.04.02

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

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_advanced_networkimage, flutter_cache_manager, numberpicker, path_provider, rxdart

More

Packages that depend on pdf_viewer_jk