[Flutter] TextField 채우기

Jinno·2023년 1월 13일
0

Flutter

목록 보기
9/19

TextField Widget이 Expanded 안에 있어도 아래 설정을 해줘야 꽉 채워지게 됨

  • maxLines: null
  • expands: true
  • expands를 true로 해도 maxLines이 defalue value인 1로 설정되어 있으면 오류 발생

*참고로 InputDecroration의 filled를 true로 설정하고, fillColor를 해야 TextFiled에 설정한 색이 표시됨

return Expanded(
      child: TextField(        
        maxLines: null,
        expands: true,        
        decoration: InputDecoration(
          border: InputBorder.none,
          filled: true,
          fillColor: Colors.grey[300],
        ),
      ),
    );
profile
Innovation, 기록용

0개의 댓글