InputDecoration(
border: InputBorder.none,
hintText: 'Username',
),
),
TextField(
decoration: new InputDecoration.collapsed(
hintText: 'Username'
),
),
Reference
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
'Flutter' 카테고리의 다른 글
| [Flutter] flutter close keyboard on textfield submit(close-hide-keyboard) (0) | 2022.04.28 |
|---|---|
| [Flutter] Textfield 속성 (0) | 2022.04.28 |
| [Flutter] dart get index of list by item (0) | 2022.04.27 |
| [Flutter] How can i get int data from TextEditingController in flutter (0) | 2022.04.27 |
| [Flutter] How to convert List to String without [] (0) | 2022.04.27 |