pdf_flutter 1.0.3 copy "pdf_flutter: ^1.0.3" to clipboard
pdf_flutter: ^1.0.3 copied to clipboard

outdated

Displaying PDF from Network, File and assets easily like we display Image in Flutter Widget.

pdf_flutter #

pub package

Inspired by Pdf_Viewer_Plugin 😇 Wrapped around AndroidPdfViewer on Android. 🙏🏼

1. Add pdf_flutteron pubspec.yml #

dependencies:
  pdf_flutter: ^version

2. On iOS enable PDF preview like this: #

Add this on ios/Runner/info.plist:

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

3. Start Using #

Load PDF from network

    PDF.network(
            'https://raw.githubusercontent.com/FlutterInThai/Dart-for-Flutter-Sheet-cheet/master/Dart-for-Flutter-Cheat-Sheet.pdf',
            height: 500,
            width: 300,
    )

Load PDF files

    File fileName;  
    PDF.file(
        fileName,
        height: 200,
        width: 100,
    )

Load PDF from assets

    PDF.assets(
        "assets/pdf/demo.pdf",
        height: 200,
        width: 100,
    )

Demo #

demo

72
likes
0
pub points
88%
popularity

Publisher

verified publishererluxman.com

Displaying PDF from Network, File and assets easily like we display Image in Flutter Widget.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http, path_provider, pedantic, uuid

More

Packages that depend on pdf_flutter