Dan Field

Results 553 comments of Dan Field

That would be expensive and probably not quite the desired behavior in a lot of cases. Imagine, for example, you have an icon you're painting on a button - you...

In this case, because the paths are the same color, we could safely merge them instead of creating distinct ones. If they were different colors, we could not and would...

I think part of this would be needing to make `currentColor` work. Do you have some examples of what you'd like to support? And is this `runtime` or `compiletime` support?

No, currentColor is just one color and a hard coded string in the doc. Every time I've come up against this problem it hasn't been clear to me how to...

It'd help to have some examples of what the internal customers are currently doing and what they expect to achieve.

This project needs to be updated, but a flutter run from the root should get you a full example

I suspect the issue might be the way you're loading them - can you share that code?

Just to help narrow this down, can you change `.then((String data) => json.decode(data))` to ``` .then((String data) { print(data); return json.decode(data); }) ```

I'm not able to reproduce your issue in a clean project. I would instrument your core and try to figure out where this is going wrong.