Flutter系统自带的TextFiled都带有下划线,有时候我们并不需要
此时我们只需要在decoration
中加入一下代码:
Container(
alignment: Alignment.topLeft,
child: TextField(
maxLines: 10,
onChanged: _textFieldChanged,
autofocus: false,
decoration: InputDecoration