Remove Line Under Text In Flutter

[Solved] Remove Line Under Text In Flutter | Dart - Code Explorer | yomemimo.com
Question : flutter textfield remove underline

Answered by : nervous-newt-8tk1g44t5z56

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"), )

Source : https://stackoverflow.com/questions/49040679/flutter-how-to-make-a-textfield-with-hinttext-but-no-underline | Last Update : Sun, 17 Jan 21

Question : remove line under text in flutter

Answered by : rajendra-prasad-chintapalli

Text("My Text", style: TextStyle( decoration: TextDecoration.none, )
);

Source : https://stackoverflow.com/questions/47114639/yellow-lines-under-text-widgets-in-flutter | Last Update : Mon, 07 Mar 22

Question : remove line under text in flutter

Answered by : rajendra-prasad-chintapalli

@override Widget build(BuildContext context) { return Material( type: MaterialType.transparency, child: new Container(

Source : https://stackoverflow.com/questions/47114639/yellow-lines-under-text-widgets-in-flutter | Last Update : Mon, 07 Mar 22

Answers related to remove line under text in flutter

Code Explorer Popular Question For Dart