관리 메뉴

Bull

[Flutter::Widget] Textfield Widget size 조절 방법! 본문

Software Framework/Flutter

[Flutter::Widget] Textfield Widget size 조절 방법!

Bull_ 2024. 8. 14. 19:57

https://stackoverflow.com/questions/50400529/how-to-change-textfields-height-and-width

 

How to change TextField's height and width?

How to customise TextField's width and height?

stackoverflow.com

 

검색어

"textField height flutter"

처음 검색이 아니였던 것;

두 번째 검색하는 거였다니.....

그래서 적용 방법은?

SizedBox(
  height: 100.0,
  child: TextField(),
)

부모 위젯에 SizeeBox 해주면 된다!