# flutter_full_pdf_viewer **Repository Path**: zhao-baiyi/flutter_full_pdf_viewer ## Basic Information - **Project Name**: flutter_full_pdf_viewer - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-21 - **Last Updated**: 2025-11-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PDF viewer for flutter Android and iOS working pdf viewer! # Use this package as a library ## 1. Depend on it Add this to your package's pubspec.yaml file: ``` dependencies: flutter_full_pdf_viewer: ^1.0.6 ``` ### 2. Install it You can install packages from the command line: with Flutter: ``` $ flutter packages get ``` Alternatively, your editor might support pub get or ```flutter packages get```. Check the docs for your editor to learn more. ### 3. Import it Now in your Dart code, you can use: ``` import 'package:flutter_full_pdf_viewer/flutter_full_pdf_viewer.dart'; import 'package:flutter_full_pdf_viewer/full_pdf_viewer_plugin.dart'; import 'package:flutter_full_pdf_viewer/full_pdf_viewer_scaffold.dart'; ``` ### 4. Informations for Release on Android You have to follow first these steps: https://flutter.io/docs/deployment/android After that you have to add ndk filters to your release config: ``` buildTypes { release { signingConfig signingConfigs.release minifyEnabled true useProguard true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' ndk { abiFilters 'armeabi-v7a' } } debug { minifyEnabled false useProguard false } } ``` Now your release app should work.