Grant Skinner
Grant Skinner
After an unexpectedly long hiatus, we now have a long term plan with Adobe for keeping the plugin updated. This will include bug fixes, feature updates, and working with the...
This proposal aims to address two specific issues: 1. As designs grow, the resulting code becomes increasingly nested and difficult to read. 2. We can't possibly support every use case...
Currently text that overflows in XD is exported with scrolling enabled in Flutter. This isn't a terribly intentional indicator though. It might be worth adding a setting to enable scrolling,...
We should probably wrap our scroll views (ScrollGroup & Repeat Grid) in a Scrollbar by default. I wonder if we should also add a setting for toggling it on or...
It would be nice to add a data parameter for grids, so that those values can be set externally. One consideration is what to do with the default value –...
It would be nice to have a unified test suite XD file. This would serve multiple purposes: 1. Facilitate more robust testing when preparing new releases. 2. Demonstrate supported vs...
Flutter's automatic hot reload has a 50ms debounce, but because we parse and write widgets sequentially sometimes the delay between writes exceeds this. In some cases, that can lead to...
XD has API support for auto height text fields via [text.layoutBox](https://adobexdplatform.com/plugin-docs/reference/scenegraph.html#textlayoutbox--typestring-widthnumber-heightnumber). 
Flutter has a number of issues with touch/mouse interactions on widgets that have been positioned with `Transform`. These issues are detailed here: https://github.com/flutter/flutter/issues/27587 The primary issue is that clicks that...
## Bug Description Flutter only supports inner strokes (aka borders) on BoxDecoration, but the SVG export is currently using centered strokes on shapes. This means that strokes display differently if...