v2.0.1pdf_viewer_plugin
A Flutter plugin for IOS and Android providing a simple way to display local file PDFs (enter to see some gifs).
70Likes 31130-day downloads130Pub points
AndroidiOS
A Flutter plugin for IOS and Android providing a simple way to display PDFs.
{"sdk":"flutter"}^1.11.1{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
A Flutter plugin for IOS and Android providing a simple way to display PDFs.
android ios
First, add pdf_viewer_plugin as a dependency in your pubspec.yaml file.
Add this lines to the ios/Runner/info.plist:
...
<key>io.flutter.embedded_views_preview</key>
<true/>
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!