Commit 34290812 authored by Jason Simmons's avatar Jason Simmons

Make the fn3 EditableText expand to fill the width of its parent

parent 01f7c846
...@@ -195,13 +195,16 @@ class EditableTextState extends State<EditableText> { ...@@ -195,13 +195,16 @@ class EditableTextState extends State<EditableText> {
else if (!config.focused && _cursorTimer != null) else if (!config.focused && _cursorTimer != null)
_stopCursorTimer(); _stopCursorTimer();
return new _EditableTextWidget( return new SizedBox(
value: config.value, width: double.INFINITY,
style: config.style, child: new _EditableTextWidget(
cursorColor: config.cursorColor, value: config.value,
showCursor: _showCursor, style: config.style,
onContentSizeChanged: config.onContentSizeChanged, cursorColor: config.cursorColor,
scrollOffset: config.scrollOffset showCursor: _showCursor,
onContentSizeChanged: config.onContentSizeChanged,
scrollOffset: config.scrollOffset
)
); );
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment