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
2018-10-28 11:04:43 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8ae48381a632bd3778ed7c46ad693ec74087931c
8ae48381
1 parent
ce41a15d
Add PDFPageFormat::toString
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
pdf/lib/src/page_format.dart
pdf/lib/src/page_format.dart
View file @
8ae4838
...
...
@@ -61,4 +61,9 @@ class PDFPageFormat {
PDFPageFormat
get
portrait
=>
height
>=
width
?
this
:
PDFPageFormat
(
height
,
width
);
@override
String
toString
()
{
return
"
${width}
x
${height}
"
;
}
}
...
...
Please
register
or
login
to post a comment