How to change TextField's height and width?

Aravinth thiyagarajan
:

How to customise TextField's width and height?

Mikolaj Kieres
:

To adjust the width, you could wrap your TextField with a Container widget, like so:

Container(              
  width: 100.0,
  child: TextField()
)

I'm not really sure what you're after when it comes to the height of the TextField but you could definitely have a look at the TextStyle widget, with which you can manipulate the fontSize and/or height

Container(              
  width: 100.0,
  child: TextField(                                 
    style: TextStyle(
      fontSize: 40.0,
      height: 2.0,
      color: Colors.black                  
    )
  )
)

Bear in mind that the height in the TextStyle is a multiplier of the font size, as per comments on the property itself:

The height of this text span, as a multiple of the font size.

When [height] is null or omitted, the line height will be determined by the font's metrics directly, which may differ from the fontSize. When [height] is non-null, the line height of the span of text will be a multiple of [fontSize] and be exactly fontSize * height logical pixels tall.

Last but not least, you might want to have a look at the decoration property of you TextField, which gives you a lot of possibilities

EDIT: How to change the inner padding/margin of the TextField

You could play around with the InputDecoration and the decoration property of the TextField. For instance, you could do something like this:

TextField(                                
    decoration: const InputDecoration(
        contentPadding: const EdgeInsets.symmetric(vertical: 40.0),
    )
)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to change all cell's height and width in laravel excel

From Dev

How to change SurfaceView width and height?

From Dev

How to change width and height in ggplotly? Are there simple methods to change the width and height?

From Dev

Width and height of a TextField

From Dev

How to change height and width according to the screen, (with minimum)

From Dev

How to change height and width of Switch in Android

From Dev

Threejs: How to dynamically change width and height of plane?

From Dev

How do you change the width and height of JTextField?

From Dev

How to Change The Width/Height Of A Search Box

From Dev

How to change the width and height of jQuery Skitter Slideshow?

From Dev

How to Change CommandField ButtonType Image Width and Height

From Dev

How to change the height and width QTabWidget tab

From Dev

How to change the width or height of a tkinter entry field

From Dev

How can i change a div's width and height when click a link outside of it?

From Dev

How to obtain form's inner width and height

From Dev

Change font height and width

From Dev

How to change div's height

From Dev

How to Change TextField's hintText FontFamily in flutter

From Dev

How can I change the width and height of slides on Slick Carousel?

From Dev

How change chart height and width into 100% from code?

From Dev

How to change height and tooltip width for JS library highcharts?

From Dev

How to measure width and height, then change parameters before adding view?

From Dev

How can I change the width/height of a div without changing position?

From Dev

How to change Blob Object width and height for each record crystal report?

From Dev

How is possible to change size(width and height) of the component in codenameone

From Dev

how to change UI Button width and height dynamically with respect to image in ios

From Dev

How to change the width and height of an image thats specified in CSS

From Dev

KonvaJS: How to change the text class properties (fontSize, height & width) on resize in?

From Dev

How to set an image's width and height when it's set in drawableLeft

Related Related

  1. 1

    How to change all cell's height and width in laravel excel

  2. 2

    How to change SurfaceView width and height?

  3. 3

    How to change width and height in ggplotly? Are there simple methods to change the width and height?

  4. 4

    Width and height of a TextField

  5. 5

    How to change height and width according to the screen, (with minimum)

  6. 6

    How to change height and width of Switch in Android

  7. 7

    Threejs: How to dynamically change width and height of plane?

  8. 8

    How do you change the width and height of JTextField?

  9. 9

    How to Change The Width/Height Of A Search Box

  10. 10

    How to change the width and height of jQuery Skitter Slideshow?

  11. 11

    How to Change CommandField ButtonType Image Width and Height

  12. 12

    How to change the height and width QTabWidget tab

  13. 13

    How to change the width or height of a tkinter entry field

  14. 14

    How can i change a div's width and height when click a link outside of it?

  15. 15

    How to obtain form's inner width and height

  16. 16

    Change font height and width

  17. 17

    How to change div's height

  18. 18

    How to Change TextField's hintText FontFamily in flutter

  19. 19

    How can I change the width and height of slides on Slick Carousel?

  20. 20

    How change chart height and width into 100% from code?

  21. 21

    How to change height and tooltip width for JS library highcharts?

  22. 22

    How to measure width and height, then change parameters before adding view?

  23. 23

    How can I change the width/height of a div without changing position?

  24. 24

    How to change Blob Object width and height for each record crystal report?

  25. 25

    How is possible to change size(width and height) of the component in codenameone

  26. 26

    how to change UI Button width and height dynamically with respect to image in ios

  27. 27

    How to change the width and height of an image thats specified in CSS

  28. 28

    KonvaJS: How to change the text class properties (fontSize, height & width) on resize in?

  29. 29

    How to set an image's width and height when it's set in drawableLeft

HotTag

Archive