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
2020-04-27 17:52:59 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f21ccc574e24f77a3e543dc2934aa726cabcb64f
f21ccc57
1 parent
ed37229e
Set a default color for Dividers
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
pdf/CHANGELOG.md
pdf/lib/widgets/basic.dart
pdf/CHANGELOG.md
View file @
f21ccc5
...
...
@@ -3,6 +3,7 @@
## 1.7.1
-
Fix justified text softWrap issue
-
Set a default color for Dividers
## 1.7.0
...
...
pdf/lib/widgets/basic.dart
View file @
f21ccc5
...
...
@@ -800,6 +800,7 @@ class Divider extends StatelessWidget {
final
double
thickness
=
this
.
thickness
??
1
;
final
double
indent
=
this
.
indent
??
0
;
final
double
endIndent
=
this
.
endIndent
??
0
;
final
PdfColor
color
=
this
.
color
??
PdfColors
.
black
;
return
SizedBox
(
height:
height
,
...
...
@@ -853,6 +854,7 @@ class VerticalDivider extends StatelessWidget {
final
double
thickness
=
this
.
thickness
??
1
;
final
double
indent
=
this
.
indent
??
0
;
final
double
endIndent
=
this
.
endIndent
??
0
;
final
PdfColor
color
=
this
.
color
??
PdfColors
.
black
;
return
SizedBox
(
width:
width
,
...
...
Please
register
or
login
to post a comment