FLUTTER ECOSYSTEM

lubritto/pdf_viewer_plugin

A Flutter plugin for IOS and Android providing a simple way to display PDFs.

pdf_viewer_plugin project cover
Stars
58
Forks
73
Last push (UTC)
Jun 29, 2023
Project status
Active
Lucas Britto GitHub avatar
GITHUB User

Lucas Britto ↗

Software Engineer at Talabat

TalabatDubai, UAE
LanguagesDartJavaObjective-CRuby

Packages published by this repository

Dependencies used

Dependency list 3 items
  • flutter{"sdk":"flutter"}
  • pedantic^1.11.1
  • flutter_testDevelopment{"sdk":"flutter"}

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

Pdf Viewer Plugin

pub package

A Flutter plugin for IOS and Android providing a simple way to display PDFs.

Features:

  • Display PDF.

android           ios

Installation

First, add pdf_viewer_plugin as a dependency in your pubspec.yaml file.

iOS

Add this lines to the ios/Runner/info.plist:

...

<key>io.flutter.embedded_views_preview</key>
<true/>
Example

The plugin works like a normal widget

class PdfApp extends StatelessWidget {
  const PdfApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return PdfView(path: 'pdf_file_path');
  }
}

Feedback welcome and Pull Requests are most welcome!