David PHAM-VAN

Set a default color for Dividers

@@ -3,6 +3,7 @@ @@ -3,6 +3,7 @@
3 ## 1.7.1 3 ## 1.7.1
4 4
5 - Fix justified text softWrap issue 5 - Fix justified text softWrap issue
  6 +- Set a default color for Dividers
6 7
7 ## 1.7.0 8 ## 1.7.0
8 9
@@ -800,6 +800,7 @@ class Divider extends StatelessWidget { @@ -800,6 +800,7 @@ class Divider extends StatelessWidget {
800 final double thickness = this.thickness ?? 1; 800 final double thickness = this.thickness ?? 1;
801 final double indent = this.indent ?? 0; 801 final double indent = this.indent ?? 0;
802 final double endIndent = this.endIndent ?? 0; 802 final double endIndent = this.endIndent ?? 0;
  803 + final PdfColor color = this.color ?? PdfColors.black;
803 804
804 return SizedBox( 805 return SizedBox(
805 height: height, 806 height: height,
@@ -853,6 +854,7 @@ class VerticalDivider extends StatelessWidget { @@ -853,6 +854,7 @@ class VerticalDivider extends StatelessWidget {
853 final double thickness = this.thickness ?? 1; 854 final double thickness = this.thickness ?? 1;
854 final double indent = this.indent ?? 0; 855 final double indent = this.indent ?? 0;
855 final double endIndent = this.endIndent ?? 0; 856 final double endIndent = this.endIndent ?? 0;
  857 + final PdfColor color = this.color ?? PdfColors.black;
856 858
857 return SizedBox( 859 return SizedBox(
858 width: width, 860 width: width,