Dart & Flutter/Error 해결 정리
TextFormField 에서 text 의 vertical alignment 가 안 맞는 문제
낭초비
2023. 9. 11. 15:56
반응형
Text를 입력 받기 위해 TextFromField를 사용했는데,
filed 내부에 표시되는 text 의 vertical alignment가 자꾸 안맞았다.
textAlignVertical: TextAlignVertical.bottom,
를 입력해도 변화가 없었고,
decoration: const InputDecoration(
contentPadding: EdgeInsets.zero,
),
을 건드려봐도 계속 text가 아랫쪽, 혹은 설정한 box 보다 아랫쪽에 표시되었다.
이 문제를 발생시키는 원인은 text 를 입력할때 아랫쪽에 생기는 밑줄을 없애기 위해 입력한 코드 때문인것을 찾았는데, 이렇게 밑줄을 삭제하면 안되나 보다.
decoration: const InputDecoration(
border: InputBorder.none,
),
구글링을 통해 해결 방법을 찾아보니, 아래와 같이 설정하면 되는 것이었다.
https://stackoverflow.com/a/64588863
Flutter TextField - textAlignVertical not working
I'm using a Flutter TextField inside a custom widget, but somehow the textAlignVertical property is not working. Below is the code for the custom widget. Is there anybody who knows where this behav...
stackoverflow.com
반응형