Answers for "remove line under text in flutter"

5

flutter textfield remove underline

TextFormField(
    cursorColor: Colors.black,
    keyboardType: inputType,
    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 January-10-2021
0

remove line under text in flutter

Text("My Text",
  style: TextStyle(
    decoration: TextDecoration.none,
  )
);
Posted by: Guest on February-28-2022
0

remove line under text in flutter

@override
  Widget build(BuildContext context) {
    return Material(
        type: MaterialType.transparency,
        child: new Container(
Posted by: Guest on February-28-2022

Code answers related to "remove line under text in flutter"

Browse Popular Code Answers by Language