在Flutter中,TextFiled中一直输入内容的话,会一直向最后显示,只有一行,这样的功能在开发中很少有用到。这时候我们只需要在TextFiled中进行设置。
Container(
alignment: Alignment.topLeft,
child: TextField(
maxLines: 10,
onChanged: _textFieldChanged,
autofocus: false,
decoration