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-06-13 08:23:30 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b104bbbfc6bfa7a056ff8375710d21550437d378
b104bbbf
1 parent
00c64871
Fix issue in text debug paint
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
pdf/lib/widgets/text.dart
pdf/lib/widgets/text.dart
View file @
b104bbb
...
...
@@ -766,7 +766,12 @@ class RichText extends Widget {
context
.
canvas
..
setStrokeColor
(
PdfColors
.
blue
)
..
setLineWidth
(
1
)
..
drawRect
(
box
.
x
,
box
.
y
,
box
.
width
,
box
.
height
)
..
drawRect
(
box
.
x
,
box
.
y
,
box
.
width
==
double
.
infinity
?
1000
:
box
.
width
,
box
.
height
==
double
.
infinity
?
1000
:
box
.
height
,
)
..
strokePath
();
}
...
...
Please
register
or
login
to post a comment