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
2020-05-05 17:10:48 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ef8be8db2b1a69f8c360022e8ae7385faf3776b2
ef8be8db
1 parent
a68edc4e
Fix PdfPreview maxPageWidth
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
printing/lib/src/pdf_preview.dart
printing/lib/src/pdf_preview.dart
View file @
ef8be8d
...
...
@@ -151,7 +151,7 @@ class _PdfPreviewState extends State<PdfPreview> {
}
final
MediaQueryData
mq
=
MediaQuery
.
of
(
context
);
dpi
=
(
min
(
mq
.
size
.
width
-
16
,
widget
.
maxPageWidth
))
*
dpi
=
(
min
(
mq
.
size
.
width
-
16
,
widget
.
maxPageWidth
??
double
.
infinity
))
*
mq
.
devicePixelRatio
/
pageFormat
.
width
*
72
;
...
...
Please
register
or
login
to post a comment