How do I align prefixIcon with text on textFormField?

WilliamKose

I have the following code for my textFormField:

 Container(
                  alignment: Alignment.centerLeft,
                  height: media.height * 0.12,
                  decoration: txtFieldBoxDecoration,
                  child: TextFormField(
                    textAlignVertical: TextAlignVertical.center,
                    keyboardType: TextInputType.emailAddress,
                    style: const TextStyle(
                      color: Colors.white,
                      fontSize: 26,
                    ),
                    decoration: InputDecoration(
                      border: InputBorder.none,
                      contentPadding: const EdgeInsets.only(top: 14),
                      prefixIcon: const Icon(
                        Icons.email,
                        color: Colors.white,
                        size: 28,
                      ),
                      hintText: 'Insira seu E-mail',
                      hintStyle: GoogleFonts.openSans(
                          color: Colors.white54, fontSize: 26),
                    ),
                    onChanged: (value) {},
                  ),
                ),

And I'm getting the following result: enter image description here

How do I align the prefix Icon and the hintText like this: enter image description here

Bhargav Ghodasara

For align the prefix Icon and the hintText, You have to remove below code from InputDecoration

contentPadding: const EdgeInsets.only(top: 14),

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

How do I align a TextFormField and Text widget inside a row in Flutter?

How do I remove margin above error text in TextFormField?

How do I vertically align text in a div?

How do I align the text correctly in html

How do I align the text in line with the picture?

How do I align text in the same line?

How do i align an image with text in an HStack?

How to update TextFormField content after onPressed of a prefixIcon with FutureBuilder?

How to align the TextFormField at left

How do I align the text in the text-area on bottom?

How do I align text next to other centered text

How do I left align text in a menu and keep the text visible?

How do I left align text in a menu and keep the text visible?

How do I vertically align text in text input at React Native?

How do I align text to the top in a resized <input type="text>?

How to make TextField text on the same line as prefixIcon?

How to remove space between prefixIcon and texformfield text?

How do I align a text on the same line as a button?

In Bootstrap, how do I get my text to left align?

How do I align my text div next to my image?

How do I right align the text in a wx.ComboBox?

How do I vertically align my text in a table header to the bottom?

Python QStyledItemDelegate - How do I properly align the text

How do I remove ' and align text in a single line?

How do I get input tag text to align to the top?

How do I align radio button text inn HTML and CSS?

How do I center align text using JavaScript?

How do I horizontally align vertical text in a table with CSS?

How do i vertically align the text in the center of jumbotron?

TOP Ranking

  1. 1

    Failed to listen on localhost:8000 (reason: Cannot assign requested address)

  2. 2

    pump.io port in URL

  3. 3

    How to import an asset in swift using Bundle.main.path() in a react-native native module

  4. 4

    Loopback Error: connect ECONNREFUSED 127.0.0.1:3306 (MAMP)

  5. 5

    Compiler error CS0246 (type or namespace not found) on using Ninject in ASP.NET vNext

  6. 6

    BigQuery - concatenate ignoring NULL

  7. 7

    Spring Boot JPA PostgreSQL Web App - Internal Authentication Error

  8. 8

    ggplotly no applicable method for 'plotly_build' applied to an object of class "NULL" if statements

  9. 9

    ngClass error (Can't bind ngClass since it isn't a known property of div) in Angular 11.0.3

  10. 10

    How to remove the extra space from right in a webview?

  11. 11

    Change dd-mm-yyyy date format of dataframe date column to yyyy-mm-dd

  12. 12

    Jquery different data trapped from direct mousedown event and simulation via $(this).trigger('mousedown');

  13. 13

    maven-jaxb2-plugin cannot generate classes due to two declarations cause a collision in ObjectFactory class

  14. 14

    java.lang.NullPointerException: Cannot read the array length because "<local3>" is null

  15. 15

    How to use merge windows unallocated space into Ubuntu using GParted?

  16. 16

    flutter: dropdown item programmatically unselect problem

  17. 17

    Pandas - check if dataframe has negative value in any column

  18. 18

    Nuget add packages gives access denied errors

  19. 19

    Can't pre-populate phone number and message body in SMS link on iPhones when SMS app is not running in the background

  20. 20

    Generate random UUIDv4 with Elm

  21. 21

    Client secret not provided in request error with Keycloak

HotTag

Archive