Vertically center text in text field in Flutter

You can try with contentPadding (.all or .only)

TextFormField(
...
decoration: InputDecoration(
    contentPadding: EdgeInsets.all(10.0),
...
)

before
enter image description here

afterenter image description here

Leave a Comment