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
2019-05-11 13:28:44 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d5c4a7d43487a2a6a4ce8b3a7584227aed8d6416
d5c4a7d4
1 parent
771e3629
Fix Transform Widget alignment
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletions
pdf/CHANGELOG.md
pdf/lib/widgets/basic.dart
pdf/pubspec.yaml
pdf/CHANGELOG.md
View file @
d5c4a7d
# 1.3.9
*
Fix Transform Widget alignment
# 1.3.8
*
Add jpeg image loading function
*
Add Theme::copyFrom() method
...
...
pdf/lib/widgets/basic.dart
View file @
d5c4a7d
...
...
@@ -175,6 +175,7 @@ class Transform extends SingleChildWidget {
if
(
origin
!=
null
)
{
result
.
translate
(
origin
.
x
,
origin
.
y
);
}
result
.
translate
(
box
.
x
,
box
.
y
);
PdfPoint
translation
;
if
(
alignment
!=
null
)
{
translation
=
alignment
.
alongSize
(
box
.
size
);
...
...
pdf/pubspec.yaml
View file @
d5c4a7d
...
...
@@ -4,7 +4,7 @@ description: A pdf producer for Dart. It can create pdf files for both web or fl
homepage
:
https://github.com/DavBfr/dart_pdf/tree/master/pdf
repository
:
https://github.com/DavBfr/dart_pdf
issue_tracker
:
https://github.com/DavBfr/dart_pdf/issues
version
:
1.3.
8
version
:
1.3.
9
environment
:
sdk
:
"
>=2.1.0
<3.0.0"
...
...
Please
register
or
login
to post a comment