How to add a prefix icon to TextFormField without shifting the label?

49 views Asked by At

I'm developing Flutter application and I want to add prefix icon to my TextFormField widget. Something like that: enter image description here

And when I try to add a prefix icon, my label aligns (vertically) with the text, but I don't want to add an offset to the label. How can I avoid this behavior?

1

There are 1 answers

0
Drompai On

So, I just added offset to prefix icon:

Transform.translate(
 offset: Offset(-16.0, 0.0),
 child: ... // prefix icon widget
)