We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c1ecf0 commit 0c6b81eCopy full SHA for 0c6b81e
packages/designto-flutter/tokens-to-flutter-widget/index.ts
@@ -192,6 +192,11 @@ function compose(
192
angle: widget.rotation,
193
child: handleChild(widget.child),
194
});
195
+ } else if (widget instanceof core.Expanded) {
196
+ thisFlutterWidget = new flutter.Expanded({
197
+ flex: widget.flex,
198
+ child: handleChild(widget.child),
199
+ });
200
}
201
202
// ----- region clip path ------
0 commit comments