我要自定义键盘按钮,因此可以在其中指定文本。
像这样:
q w e r t y u i o p
a s d f g h j k l
⬆︎ z x c v b n m ✖️
-------
?123 , ☺️ . |myText|
-------
有什么简单的方法吗?
我的部分代码:
AppBar(
title: TextField(
onSubmitted: (String value) {
print(value);
},
textInputAction: TextInputAction.search, //change here?
),
);