Alex Sinelnikov
Alex Sinelnikov
Any progress on this?
I was able to fix it by explicitly assigning values from incoming object to state.
This also brings up a question. How do we store initial default values and how to easier add new? I couldn't find in vscode repo how do they handle this...
> It looks like it is stored in `~/Library/Application Support/Code/User/keybindings.json`, so we might store it in `~/Library/Application Support/CodeEdit/User/keybindings.json` or `~/.codeedit/keybindings.json`. > > This is a bigger issue here but I...
I guess we could start with json file located inside app folder for now, and later extract to any other path if we decide so. What do you think @austincondiff...
> What is the status of this PR? It was opened three weeks ago and is still a draft. I just wanted to make sure it doesn't go stale. Yeah...
@wdg Its not abandoned, just had no time to work on this. Plan to resume the work in few days
Small update: I've resumed work on this, dealing with UI part.
The problem is here - https://github.com/miguelcobain/ember-paper/blob/master/addon/components/paper-toast.js#L100 `run.later` will lock the thread where tests are running, therefore you won't be able to catch moment when toast was shown, and you'll have...
I wrapped it into `RepaintBoundary` and it worked well for me. But I was invoking it like: ``` PieChart( dataMap: {"Title": 5}, totalValue: 10, baseChartColor: const Color(0xAAD6DADA), animationDuration: const Duration(milliseconds:...