https://github.com/dutchcodingcompany/file_preview
https://github.com/dutchcodingcompany/file_preview
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dutchcodingcompany/file_preview
- Owner: DutchCodingCompany
- License: mit
- Created: 2022-01-17T09:20:22.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-16T10:16:32.000Z (11 months ago)
- Last Synced: 2025-04-20T10:26:06.345Z (3 months ago)
- Language: Dart
- Size: 570 KB
- Stars: 3
- Watchers: 2
- Forks: 18
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```dart
final File file = await FilePicker.getFile();
try {
final thumbnail = await FilePreview.getThumbnail(file.path);
setState(() {
image = thumbnail;
});
} catch (e) {
image = Image.asset("");
}
```