Flutter textfield 的 onSubmitted 触发事件
大家好,\
我在用 flutter 写一个 android 下的 app, 但是碰到了一个问题,\
在 textfield 下的,我按了键盘的回车键,但是却没有触发 onSubmitted 事件,是怎么回事,顺便提一下,我用的键盘是实体键盘.
以下是我的代码
TextField(
controller: _input,
textInputAction: TextInputAction.none,
focusNode: _inputFocusNode,
onEditingComplete: () {
print('test');
},
onSubmitted: (value) {
print(value);
},
//autofocus: true,
decoration: new InputDecoration.collapsed(
hintText: ' 请输入产品编码或者条形码并回车 '),
);
推荐文章: