David PHAM-VAN

Fix SVG colors with percent

... ... @@ -3,6 +3,7 @@
## 3.0.0-nullsafety.2
- Fix Checkbox Widget
- Fix SVG colors with percent
## 3.0.0-nullsafety.1
... ...
... ... @@ -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 {
... ...