Answers for "flutter add border for disabled textformfield"

0

remove border textfield flutter

TextFormField(
    decoration: new InputDecoration(
        border: InputBorder.none,
        focusedBorder: InputBorder.none,
        enabledBorder: InputBorder.none,
        errorBorder: InputBorder.none,
        disabledBorder: InputBorder.none,
        contentPadding:
            EdgeInsets.only(left: 15, bottom: 11, top: 11, right: 15),
        hintText: "Hint here"
	),
)
Posted by: Guest on May-29-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

Code answers related to "flutter add border for disabled textformfield"

Code answers related to "Dart"

Browse Popular Code Answers by Language