Answers for "textfield line disable fluttter"

3

disable textfield underline

<TextField
  fullWidth
  placeholder="Search..."
  InputProps={{ disableUnderline: true }}
 />
Posted by: Guest on July-30-2021
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

Browse Popular Code Answers by Language