pdf_render 1.4.12 pdf_render: ^1.4.12 copied to clipboard
A plugin that provides you with intermediate PDF rendering APIs and easy-to-use Flutter Widgets.
1.4.12 #
- Merge PR #148 to handle click outside page view
1.4.11 #
1.4.8 #
- js plugin backed to 0.6.7
- Fixes memory leak when closing PdfViewer (#147)
1.4.7 #
- Forked InteractiveViewer code to support wheel-to-scroll (PR #144)
- Flutter 3.21 build fix (PR #143)
1.4.6 #
- Minor fixes
1.4.5 #
README.md
updates.
1.4.4 #
README.md
updates.
1.4.3 #
- New plugin, named pdfrx, is a better replacement for pdf_render. And pdf_render is now in maintenance mode. No new features are added to pdf_render.
1.4.2 #
- android/build.gradle update toward Gradle Plugin 8+ (PR #131)
1.4.1 #
- Adding many scroll position related members on PdfViewerController to somehow implement scroll position indicator (#129)
1.4.0 #
- BREAKING CHANGE:
PdfViewerController.getPage
now returnsFuture<PdfPage>
(#115) - Fix PdfViewer may leave pages unrendered when scolled down page by page (#121)
1.3.8 #
- Add
PdfViewerController.getPage
to help rendering onbuildPageOverlay
(#110)
1.3.7 #
- Add
PdfViewerParams.panAxis
(PR #105)
1.3.6 #
- Fixes dependencies to work on stable channel
1.3.5 #
- Merging PR: Fix allowAntialiasingIOS #98
1.3.4 #
- FIXED: await page.render() crashed on web #66 (and add a button to test rendering API on example)
1.3.3 #
- Minor, but PDF rendering result change (for Android/iOS) due to consistency issue described on #88
1.3.2 #
- Minor dependency update on example code.
1.3.0 #
- BREAKING CHANGE: Simpler PdfPageImageTexture structure to improve rendering performance especially on Flutter Web.
1.2.1 #
- Certain Flutter version shows "Error: Type 'Uint8List' not found" though another version does not.
1.1.0 #
- I noticed broken semantic versioning on the 1.0.x versions... But the version numbers are consistent enough to get back to correct versioning.
- FIXED: #56 Null check operator used on a null value
1.0.21 #
- Minor updates.
1.0.20 #
- PdfViewerParams introduces scrollDirection to support horizontal scroll (#69).
- targetSdkVersion 31 for example code
- Gradle/Kotlin version updates
1.0.19 #
- Add more error handling codes.
1.0.16 #
- Fix a warning on AndroidManifest.xml.
1.0.14 #
- Remove device_info_plus from dependencies.
1.0.11 #
1.0.9 #
- Now supports macOS.
1.0.8 #
- More null-safety updates on PdfDocument.openXXX functions; they were returning null on certain parameter errors but now they throw exception on such errors.
1.0.7 #
- Introducing onError handler on PdfViewer.openXXX and PdfDocumentLoader.openXXX.
1.0.4 #
- BREAKING CHANGES: PdfViewer and PdfDocumentLoader now has openFile, openAsset, and openData factory methods. Existing code must be changed to use these methods. Further more, the parameters on PdfViewer is moved to PdfViewerParams.
1.0.3 #
- Update documentation.
1.0.2 #
- cMapUrl setting fix for Flutter Web.
1.0.1 #
- Flutter Web support now works correctly.
1.0.0 #
- Stable release for null-safety.
1.0.0-dev #
- Initial release that supports null-safety (Currently not compatible with Flutter stable).
- BREAKING CHANGE: pdf_render_widget2 overwrites pdf_render_widget.
- Alpha preview of Flutter Web support (I mean, not yet working correctly).
0.69.0 #
- allowAntialiasingIOS support.
0.68.0 #
- Update device_info version.
0.67.0 #
- PdfViewerController now supports viewRect, zoomRatio, visiblePages, and currentPageNumber.
0.66.2 #
- FIXED: SDK version requirement is not compatible to stable releases.
0.66.0 #
- Introducing PdfViewer that supports interactive pinch-zoom (#5); not yet complete but things just work well.
0.64.1 #
- Update documents.
- BREAKING CHANGE: PdfDocument/PdfPage/PdfPageImage no longer have public constructors.
0.64.0 #
- Introducing faster and memory-friendly PdfPageImage rendering mechanism based on Pointer
- BREAKING CHANGE: backgroundFill/renderingPixelRatio/dontUseTexture are moved to PdfPageTextureBuilder.
- BREAKING CHANGE: PdfPageImage.image is replaced by PdfPageImage.pixels, PdfPageImage.createImageIfNotAvailable, createImageIfNotAvailable.imageIfAvailable.
0.62.0 #
- Minor bug fix.
0.61.0 #
- Introduces pdf_render_widgets2.dart. The classes in pdf_render_widgets.dart are deprecated now.
0.57.0 #
- On iOS Simulator, the plugin now uses compatibility rendering mode; to test the actual behavior, please use physical devices.
0.56.0 #
- Woops, backgroundFill must be true for default.
0.55.0 #
- Now render like functions treat null and 0 almost identical.
0.54.0 #
- PdfPage.render method does not handle w=0,h=0 case (Changes on 0.51.0 breaks compatibility with older versions).
0.53.0 #
- Introduces PdfPageFit to specify PDF page size fit rule easier.
0.51.0 #
- PdfPage.render method does not handle w=0,h=0 case.
0.49.0 #
- Just update documents. Also introduces
PdfPageImageTexture
class that is used internally to interact with Flutter's Texture class.
0.46.0 #
PdfPageView
uses Texture rather than RawImage.
0.37.0 #
- Introducing
PdfDocumentLoader
andPdfPageView
that eases PDF view.
0.33.0 #
- FIXED: disposing PdfDocument may cause ArrayIndexOutOfBoundsException. (Android)
0.29.0 #
- Minor build configuration changes.
0.27.0 #
- Add backgroundFill option to render method.
0.23.0 #
- First version that supports Android.
0.1.0 #
- First release.