Answers for "how to disable pasting in TextFormField in 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 "how to disable pasting in TextFormField in flutter"

Browse Popular Code Answers by Language