Dan Field
Dan Field
This is partly because of #102 Since flutter_svg doesn't know if the def will be defined later, it just errors in this condition so the developer can fix it. In...
vector_graphics deals with this better.
What's the problem? You may need to pull from github, and it may also require a very recent version of Flutter unfortunately
This library was designed primarily with smaller, simpler SVGs in mind - particularly icons. It should be possible to make that smooth, but I don't have plans to work on...
I think the underlying question here is how would you go from a deisgner's drawing to IconVG? Is there/are there canonical tools for doing this? Are certain formats supported or...
The example definitely doesn't handle backspace. It looks like there's some attempt to have backspace support, but it doesn't seem to work like I'd expect. For example, changing the handler...
This seems to do it: ```dart if (input.codeUnitAt(0) == 127) { terminal.buffer.eraseCharacters(1); terminal.buffer.backspace(); terminal.refresh(); return; } ```
An input handler, of course, could ignore empty strings - but you'll find your application doing _tons_ of extra work to serialize and send those messages back and forth in...
I'm on a relatively recent commit to master. If this is a regression Flutter introduced we may want to file a bug there :\ It does seem strange that it...
This was introduced by https://github.com/flutter/engine/pull/24533 - @cbracken was this intentional breakage? It didn't seem to break the framework use case.