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-05 08:37:56 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ca7453ecd2c5511084ac70ba40f8c19a6183913a
ca7453ec
1 parent
1a59bff2
Add missing type annotation in graphics
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
pdf/lib/src/graphics.dart
pdf/lib/src/graphics.dart
View file @
ca7453e
...
...
@@ -515,7 +515,7 @@ class PdfGraphics {
}
void
drawShape
(
String
d
,
{
bool
stroke
=
true
})
{
final
proxy
=
_PathProxy
(
this
,
stroke
);
final
_PathProxy
proxy
=
_PathProxy
(
this
,
stroke
);
writeSvgPathDataToPath
(
d
,
proxy
);
}
...
...
Please
register
or
login
to post a comment