5

我有一种情况,我需要以编程方式关注InputField(例如响应按钮按下)。

我正在使用Focus.moveTo函数;但是,即使 InputField 已聚焦(出现闪烁的光标),键盘也不会出现。

似乎最好的解决方案是在 _InputFieldState 中调用RequestKeyboard()函数,但这是私有的。

实现这一目标的最佳方法是什么?

这是显示工作流程的代码示例:

class InputFieldWrapper extends StatefulWidget {

  @override
  _InputFieldWrapperState createState() => new _InputFieldWrapperState();
}


class _InputFieldWrapperState extends State<InputFieldWrapper> {

  InputValue _currentInput = new InputValue(text: 'hello');

  // GlobalKey for the InputField so we can focus on it
  GlobalKey<EditableTextState> _inputKey = new GlobalKey<EditableTextState>();

  @override
  Widget build(BuildContext context) {
    return new Column(
      children: [
        // Button that should focus on the InputField when pressed
        new IconButton(
          icon: new Icon(Icons.message),
          onPressed: () {
            Focus.moveTo(_inputKey);
          },
        ),
        // InputField that should be focused when pressing the Button
        new InputField(
          value: _currentInput,
          key: _inputKey,
          onChanged: (InputValue input) {
            setState(() {
              _currentInput = input;
            });
          }
        ),
      ],
    );
  }
}
4

1 回答 1

1

这被认为是一个错误,并在#7985进行了跟踪。

于 2017-04-06T02:59:29.307 回答