David PHAM-VAN

Fix Transform Widget alignment

# 1.3.9
* Fix Transform Widget alignment
# 1.3.8
* Add jpeg image loading function
* Add Theme::copyFrom() method
... ...
... ... @@ -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);
... ...
... ... @@ -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"
... ...