颤振:热重载后键盘未显示在TextField上

时间:2019-08-17 03:19:53

标签: flutter flutter-layout flutter-widget

我不确定为什么热重装后键盘没有显示,我运行了下面的代码,该代码给出了空的TextFiled而没有 autofocus:true

 TextField field = new TextField(
      controller: controller,
);

但是在添加 autofocus:true 强文本**之后,键盘应该显示为有状态的小部件,在热重载后会重绘自身。

 TextField field = new TextField(
          controller: controller,
          autofocus: true,
    );

注意:我当前的屏幕上只有TextWidget。

1 个答案:

答案 0 :(得分:0)

您必须使用热重启重新创建所有小部件,热重启键盘将自动显示。 enter image description here

在Mac上热重启的快捷方式:Cmd + Shift + \