pdf_thumbnail 0.1.0+1 copy "pdf_thumbnail: ^0.1.0+1" to clipboard
pdf_thumbnail: ^0.1.0+1 copied to clipboard

Thumbnail viewer for pdfs

Pdf Thumbnail #

style: very good analysis Powered by Mason License: MIT

Thumbnail viewer for pdfs

Installation 💻 #

❗ In order to start using Pdf Thumbnail you must have the Flutter SDK installed on your machine.

Add pdf_thumbnail to your pubspec.yaml:

dependencies:
  pdf_thumbnail:

Install it:

flutter packages get

Example ✍️ #

 return Stack(
              children: [
                SizedBox(
                  height: MediaQuery.of(context).size.height,
                  width: MediaQuery.of(context).size.width,
                  child: PdfViewer(
                    filePath: snapshot.data!.path,
                  ),
                ),
                if (showThumbnail)
                  Positioned(
                    bottom: 0,
                    width: MediaQuery.of(context).size.width,
                    // Here's the thumbnail widget.
                    child: PdfThumbnail.fromFile(snapshot.data!.path),
                  ),
              ],
            );

Screenshot

[screenshot