Showing
2 changed files
with
3 additions
and
0 deletions
| @@ -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, |
-
Please register or login to post a comment