본문 바로가기

Flutter

[Flutter] TextField hint & helper

TextField 의 대한 설명, 입력 예시 등등 TextField를 꾸미기 위해 많이 사용되는 hint, helper 입니다.

이름만으로는 헷갈릴 수 있는 아래 그림을 보시면 이해가 되리라 생각됩니다.

 

 

각각 텍스트와 스타일을 줄 수 있습니다.

TextField 의 decoration 속성 내부에 아래와 같이 사용할 수 있습니다.

 

decoration: const InputDecoration(
  hintText: '힌트 텍스트',
  hintStyle: TextStyle(color: Colors.grey),
  helperText: '헬퍼 텍스트',
  helperStyle: TextStyle(color: Colors.red)
),