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
2021-04-21 09:19:29 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e51ed3f3d76d9e0c01343ea066bbb6c694c7a2c1
e51ed3f3
1 parent
ed9cc16d
Fix Table horizontalInside borders
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
pdf/CHANGELOG.md
pdf/lib/src/widgets/table.dart
pdf/CHANGELOG.md
View file @
e51ed3f
...
...
@@ -12,6 +12,7 @@
-
Implement SpanningWidget on RichText
-
Passthrough SpanningWidget on SingleChildWidget and StatelessWidget
-
Improve TextOverflow support
-
Fix Table horizontalInside borders
## 3.2.0
...
...
pdf/lib/src/widgets/table.dart
View file @
e51ed3f
...
...
@@ -128,8 +128,8 @@ class TableBorder extends Border {
context
.
canvas
.
moveTo
(
box
.
x
,
offset
);
context
.
canvas
.
lineTo
(
box
.
right
,
offset
);
}
context
.
canvas
.
setStrokeColor
(
verticalInside
.
color
);
context
.
canvas
.
setLineWidth
(
verticalInside
.
width
);
context
.
canvas
.
setStrokeColor
(
horizontalInside
.
color
);
context
.
canvas
.
setLineWidth
(
horizontalInside
.
width
);
context
.
canvas
.
strokePath
();
horizontalInside
.
style
.
unsetStyle
(
context
);
}
...
...
Please
register
or
login
to post a comment