Disable a text edit field in flutter

后端 未结 11 1587
深忆病人
深忆病人 2020-12-23 17:05

I need to disable TextFormField occasionally. I couldn\'t find a flag in the widget, or the controller to simply make it read only or disable. What is the best way to do it?

11条回答
  •  星月不相逢
    2020-12-23 17:33

    I have used a combination of readOnly and enableInteractiveSelection properties to achieve the desired behavior on TextField.

    TextField(
      readOnly: true,
      enableInteractiveSelection: true,
      onTap: () {
        do_something(),
      },
    )
    

    With enableInteractiveSelection set to true, it will allow onTap() to function as normal.

提交回复
热议问题