Flutter TextField 不能直接放到 Row 里面
2019-04-03 本文已影响0人
space77
报错信息 :BoxConstraints forces an infinite width.
错误用法
Row(
children: <Widget>[
TextField(),
],
);
解决方法
使用 Expanded 包裹 TextField
Row(
children: <Widget>[
Expanded(
child: TextField(),
)
],
);