How to change TextField's height and width?

后端 未结 7 1669
既然无缘
既然无缘 2020-12-13 08:02

How to customise TextField\'s width and height?

7条回答
  •  遥遥无期
    2020-12-13 08:54

    To increase the height of TextField Widget just make use of the maxLines: properties that comes with the widget. For Example: TextField( maxLines: 5 ) // it will increase the height and width of the Textfield.

提交回复
热议问题