Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David PHAM-VAN
2022-03-12 12:31:54 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
753c73c67d0f18e9c6090e21bb2e997e9a8f334b
753c73c6
1 parent
e3a7ca91
Fix orientation not changing
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
printing/CHANGELOG.md
printing/lib/src/preview/pdf_preview.dart
printing/pubspec.yaml
printing/CHANGELOG.md
View file @
753c73c
# Changelog
## 5.7.4
-
Fix orientation not changing
## 5.7.3
-
Fix crash when Android load a PDF file which had password
...
...
printing/lib/src/preview/pdf_preview.dart
View file @
753c73c
...
...
@@ -284,7 +284,8 @@ class _PdfPreviewState extends State<PdfPreview> {
));
if
(
widget
.
canChangeOrientation
)
{
actions
.
add
(
const
PdfPageOrientationAction
());
// ignore: prefer_const_constructors
actions
.
add
(
PdfPageOrientationAction
());
}
}
...
...
printing/pubspec.yaml
View file @
753c73c
...
...
@@ -6,7 +6,7 @@ description: >
homepage
:
https://github.com/DavBfr/dart_pdf/tree/master/printing
repository
:
https://github.com/DavBfr/dart_pdf
issue_tracker
:
https://github.com/DavBfr/dart_pdf/issues
version
:
5.7.
3
version
:
5.7.
4
environment
:
sdk
:
"
>=2.12.0
<3.0.0"
...
...
Please
register
or
login
to post a comment