【发布时间】:2020-06-05 10:19:04
【问题描述】:
每当我写这个词时,都会有下划线。我一写一个新词,下划线就不再是下划线,而是我现在写的。我可以以某种方式发出在写作时没有下划线的问题吗?我也没有在论坛里找到任何东西。
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),
),
),
),
【问题讨论】:
-
您描述的行为似乎是由于您在设备上的设置,进行拼写检查。我可以看到您也启用了键盘顶部的自动提示栏。
-
好的,当然。我不必通过应用程序发出它。
-
尝试
Textfield的autocorrect属性并将其设置为false@Florian