file_previewer 0.2.0 copy "file_previewer: ^0.2.0" to clipboard
file_previewer: ^0.2.0 copied to clipboard

Generate a thumbnail for a file based on the file extension. Uses the native files previewer on iOS.

file_previewer #

Can generate an preview image based on the file extension. Uses the native files previewer on iOS.

Getting Started #

Generate a preview Widget by calling await FilePreview.getThumbnail(file.path).

  • An image file
  • A pdf file
  • A pdf file where a preview cannot be rendered

Usage #

final File file = await FilePicker.getFile();
try {
    final thumbnail = await FilePreview.getThumbnail(file.path);
    setState(() {
        image = thumbnail;
    });
} catch (e) {
    image = Image.asset("");
}
copied to clipboard
43
likes
160
points
519
downloads

Publisher

verified publisherdutchcodingcompany.com

Weekly Downloads

2024.09.25 - 2025.04.09

Generate a thumbnail for a file based on the file extension. Uses the native files previewer on iOS.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, path, pdfx

More

Packages that depend on file_previewer