Merge pull request #1421 from jason-simmons/editable_text_fn3_expand_width
Make the fn3 EditableText expand to fill the width of its parent
This commit is contained in:
commit
e8a756c769
@ -195,13 +195,16 @@ class EditableTextState extends State<EditableText> {
|
||||
else if (!config.focused && _cursorTimer != null)
|
||||
_stopCursorTimer();
|
||||
|
||||
return new _EditableTextWidget(
|
||||
value: config.value,
|
||||
style: config.style,
|
||||
cursorColor: config.cursorColor,
|
||||
showCursor: _showCursor,
|
||||
onContentSizeChanged: config.onContentSizeChanged,
|
||||
scrollOffset: config.scrollOffset
|
||||
return new SizedBox(
|
||||
width: double.INFINITY,
|
||||
child: new _EditableTextWidget(
|
||||
value: config.value,
|
||||
style: config.style,
|
||||
cursorColor: config.cursorColor,
|
||||
showCursor: _showCursor,
|
||||
onContentSizeChanged: config.onContentSizeChanged,
|
||||
scrollOffset: config.scrollOffset
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user