Dan Field
Dan Field
I don't have access to those devices at the moment :\
That SVG would need to be preprocessed to remove the style element.
Supporting CSS is, quite frankly, a nightmare and a full time job. It is generally possible to preprocess any CSS away as well. For the original request of this bug,...
From the readme: import 'package:flutter_svg/flutter_svg.dart'; final String rawSvg = '''...'''; final DrawableRoot svgRoot = await svg.fromSvgString(rawSvg, rawSvg); // If you only want the final Picture output, just use final Picture...
I'm not sure why you're not getting errors, but it looks like percentages don't work for width and height parameters on a rect right now. I get a stack dump...
(Are you sure your testing device/emulator is connected to the network?)
Your SVG is using a `%` where it's not currently supported. If you have the SVG in question we could look at it and see about making it work.
Does this still happen on the head commit of this repository? There've been a few bug fixes I don't think I've released yet but I should :)
The `viewBox` attribute isn't supported on symbols right now.
This one is relatively complicated and I'm sure there are bugs here. There are likely issues in the way the `use` and `symbol` are getting processed.