개발 창고/Flutter

[Flutter] TextField 힌트 추가

로이제로 2023. 6. 10. 22:00
반응형
TextField(
    decoration  : const InputDecoration(
        // Input box 라인 제거
        border      : InputBorder.none
        // Input box 힌트 추가
      , hintText    : "장소, 버스, 지하철, 주소 검색"
    )
    // Input Text 색상
  , style       : const TextStyle(color: Colors.black)
)

해당 TextField 영역에 적용하면, border가 사라지고 hint가 추가됩니다.

반응형