在Flutter应用程序文本框中,用户正在输入文本和数字。可以使用什么方法来抑制键盘建议栏?
siotufzp1#
使用EditableText类并将属性自动更正设置为false。如果有用的话一定要告诉我,我还没试过。
ippsafx72#
您可以使用此选项禁用建议和自动更正:
TextField( enableSuggestions: false, autocorrect: false ),
ep6jt1vc3#
只要添加参数autocorrect:false,那么它会隐藏建议.
new TextField( autocorrect: false, controller: _tbName, decoration: new InputDecoration( icon: const Icon(Icons.person), hintText: 'Enter your Name', labelText: 'Name', helperText: 'Required', errorText: nameErrorText, ), onChanged: (value) { //save here }, );
b09cbbtk4#
要禁用建议栏,需要使用smartDashesType参数。这个解决方案对我来说很有效:
smartDashesType
TextFormField( smartDashesType: SmartDashesType.disabled, autocorrect: false )
4条答案
按热度按时间siotufzp1#
使用EditableText类并将属性自动更正设置为false。
如果有用的话一定要告诉我,我还没试过。
ippsafx72#
您可以使用此选项禁用建议和自动更正:
ep6jt1vc3#
只要添加参数autocorrect:false,那么它会隐藏建议.
b09cbbtk4#
要禁用建议栏,需要使用
smartDashesType
参数。这个解决方案对我来说很有效: