scientifichackers/flutter_pdf_viewer
Flutter용 네이티브 PDF 뷰어입니다.
- Stars
- 107
- Forks
- 40
- 최근 푸시(UTC)
- 2020. 4. 23.
- 프로젝트 상태
- 활성
사용 중인 의존성
의존성 목록 3 개
- flutter
{"sdk":"flutter"} - crypto
^2.0.6 - plugin_scaffold
^1.1.1
원본 README
아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
README 펼치기 / 접기
flutter pdf viewer
A native Pdf viewer for flutter, built on AndroidPdfViewer.
P.S. Android Only!
Features
- Night Mode
- Scroll Bar
- Horizontal swipe
- Pinch to zoom
- Show inline Videos in Pdf
- Immersive mode
- Page by page analytics
Security
- Features fast native speed XOR - decryption of files.
- Password protected pdf.
- Display PDF from bytes without ever touching the disk!
Drawbacks
-
Inline Pdf Viewing is not supported. ( A new activity is opened ). See #1.A proof of concept for inline PDFs is available at the inline branch.
Install
To use this plugin, follow the installation instructions.
License: MIT
NOTE: You must add these lines at android/app/build.gradle.
(This is required by ExoPlayer, which is used to play videos).
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
Example
$ git clone https://github.com/pycampers/flutter_pdf_viewer.git
$ cd flutter_pdf_viewer/example
$ flutter run
Preview
https://i.imgur.com/Uhmk09s.pngGenerating 64-bit APKs
The Underlying native library tends to blow up the APK size. So, you can build a separate APK for each CPU architecture.
This will also fix an issue with flutter tooling, where 64-bit ARM devices don't work.
Add the following section in android/app/build.gradle -
android {
defaultConfig {
ndk {
abiFilters "<arch>"
}
}
}
-
For 32-bit APK, replace
<arch>witharmeabi-v7a, and run$ flutter build apk --releaseas usual. -
For 64-bit APK, replace
<arch>witharm64-v8a, and run$ flutter build apk --release --target-platform=android-arm64.
Now you have 2 Apks, which you will need to publish separately to the Play Store. For that you need to tweak the android:versionCode property to have slightly different values for each build.
The exact "Rules for multiple APKs" can be found here.
Thanks
- AndroidPdfViewer for proving this wonderful, and simple to use library.
- #10348.