David PHAM-VAN

Fix justified text softWrap issue

1 # Changelog 1 # Changelog
2 2
  3 +## 1.7.1
  4 +
  5 +- Fix justified text softWrap issue
  6 +
3 ## 1.7.0 7 ## 1.7.0
4 8
5 - Implement Linear and Radial gradients in BoxDecoration 9 - Implement Linear and Radial gradients in BoxDecoration
@@ -644,7 +644,7 @@ class RichText extends Widget { @@ -644,7 +644,7 @@ class RichText extends Widget {
644 _decorations.sublist(decorationStart), 644 _decorations.sublist(decorationStart),
645 constraintWidth, 645 constraintWidth,
646 offsetX - space.advanceWidth * style.wordSpacing, 646 offsetX - space.advanceWidth * style.wordSpacing,
647 - false, 647 + true,
648 bottom, 648 bottom,
649 )); 649 ));
650 650
@@ -4,7 +4,7 @@ description: A pdf producer for Dart. It can create pdf files for both web or fl @@ -4,7 +4,7 @@ description: A pdf producer for Dart. It can create pdf files for both web or fl
4 homepage: https://github.com/DavBfr/dart_pdf/tree/master/pdf 4 homepage: https://github.com/DavBfr/dart_pdf/tree/master/pdf
5 repository: https://github.com/DavBfr/dart_pdf 5 repository: https://github.com/DavBfr/dart_pdf
6 issue_tracker: https://github.com/DavBfr/dart_pdf/issues 6 issue_tracker: https://github.com/DavBfr/dart_pdf/issues
7 -version: 1.7.0 7 +version: 1.7.1
8 8
9 environment: 9 environment:
10 sdk: ">=2.3.0 <3.0.0" 10 sdk: ">=2.3.0 <3.0.0"