8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a04acd commit 76c61aeCopy full SHA for 76c61ae
.gitignore
@@ -154,4 +154,6 @@ modules.xml
154
155
packages/**/pubspec_overrides.yaml
156
./pubspec_overrides.yaml
157
-/example/pubspec_overrides.yaml
+/example/pubspec_overrides.yaml
158
+
159
+coverage/
packages/flutter_html_svg/lib/flutter_html_svg.dart
@@ -178,7 +178,7 @@ class SvgHtmlExtension extends Extension {
178
final data = dataUri?.namedGroup('data');
179
if (data == null) return const SizedBox(height: 0, width: 0);
180
181
- if (dataUri?.namedGroup('encoding') == ';base64') {
+ if (dataUri?.namedGroup('encoding') == 'base64') {
182
return SvgPicture.memory(
183
base64.decode(data.trim()),
184
width: imageStyle.width?.value,
0 commit comments