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-02-19 09:35:12 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
374ac2ac2bd9214d1e291de42bbe8e74e8a022c2
374ac2ac
1 parent
79fe64fa
Fix SVG colors with percent
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
pdf/CHANGELOG.md
pdf/lib/src/svg/parser.dart
pdf/CHANGELOG.md
View file @
374ac2a
...
...
@@ -3,6 +3,7 @@
## 3.0.0-nullsafety.2
-
Fix Checkbox Widget
-
Fix SVG colors with percent
## 3.0.0-nullsafety.1
...
...
pdf/lib/src/svg/parser.dart
View file @
374ac2a
...
...
@@ -58,7 +58,8 @@ class SvgParser {
final
XmlElement
root
;
static
final
_transformParameterRegExp
=
RegExp
(
r'[\w.-]+'
);
static
final
_transformParameterRegExp
=
RegExp
(
r'[\w.-]+(px|pt|em|cm|mm|in|%|)'
);
XmlElement
?
findById
(
String
id
)
{
try
{
...
...
Please
register
or
login
to post a comment