본문 바로가기
Flutter

[Flutter] flutter remove textfield underline

by hymndaniel 2022. 4. 28.
InputDecoration(
    border: InputBorder.none,
    hintText: 'Username',
  ),
),
 

 

TextField(
  decoration: new InputDecoration.collapsed(
    hintText: 'Username'
  ),
),

 

Reference

https://stackoverflow.com/questions/49040679/flutter-how-to-make-a-textfield-with-hinttext-but-no-underline

 

Flutter: how to make a TextField with HintText but no Underline?

This is what I'm trying to make: In the Flutter docs for Text Fields (https://flutter.io/text-input/) it says you can remove the underline by passing null to the decoration. However, that also get...

stackoverflow.com

 

728x90