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
2021-05-17 07:22:27 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f3a1e6ba99596a67f0c2278a4a0fef38d307dfcc
f3a1e6ba
1 parent
3a9ad122
Add A6 page format
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
pdf/CHANGELOG.md
pdf/lib/src/pdf/page_format.dart
pdf/CHANGELOG.md
View file @
f3a1e6b
...
...
@@ -9,6 +9,7 @@
-
Add equality operator to PdfPageFormat
-
Improve TextStyle decoration merging
-
Add PdfColor.flatten
-
Add A6 page format
## 3.3.0
...
...
pdf/lib/src/pdf/page_format.dart
View file @
f3a1e6b
...
...
@@ -38,6 +38,8 @@ class PdfPageFormat {
PdfPageFormat
(
21.0
*
cm
,
29.7
*
cm
,
marginAll:
2.0
*
cm
);
static
const
PdfPageFormat
a5
=
PdfPageFormat
(
14.8
*
cm
,
21.0
*
cm
,
marginAll:
2.0
*
cm
);
static
const
PdfPageFormat
a6
=
PdfPageFormat
(
105
*
mm
,
148
*
mm
,
marginAll:
1.0
*
cm
);
static
const
PdfPageFormat
letter
=
PdfPageFormat
(
8.5
*
inch
,
11.0
*
inch
,
marginAll:
inch
);
static
const
PdfPageFormat
legal
=
...
...
Please
register
or
login
to post a comment