Flutter:如何自定义TextInputAction按钮(例如更改按钮内的文本)?

时间:2019-12-19 04:13:40

标签: flutter keyboard customization

我要自定义键盘按钮,因此可以在其中指定文本。

像这样:

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?
      ),
);

0 个答案:

没有答案