Disable a text edit field in flutter

后端 未结 11 1585
深忆病人
深忆病人 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:09

    There is now a way to disable TextField and TextFormField. See github here. Use it like this:

    TextField(enabled: false)
    

提交回复
热议问题