Answers for "disable keyboard on textfield flutter"

3

flutter disable text form field

TextFormField(
      enabled: false, //Not clickable and not editable
      readOnly: true, //Clickable and not editable
)
Posted by: Guest on December-15-2020

Code answers related to "disable keyboard on textfield flutter"

Browse Popular Code Answers by Language