[每当我写这个词时,要加下划线。一旦我写了一个新单词,将不再强调下划线,而是我当前正在写的内容。我能以某种方式发出在写作时未加下划线的问题吗?我也没有在论坛中找到任何内容。
child: TextField(
autocorrect: false,
style: TextStyle(
fontSize: 22.0,
),
cursorColor: Colors.black,
decoration: InputDecoration(
hintText: 'Search',
border: InputBorder.none,
icon: Icon(
Icons.search,
color: Color(0xFFe1F5FE),
),
),
),
您是否尝试过focusedBorder
?
TextField(
decoration: new InputDecoration(
border: InputBorder.none,
focusedBorder: InputBorder.none,
contentPadding: EdgeInsets.only(left: 15, bottom: 11, top: 11, right: 15),
hintText: 'what you want'
),
),