728x90
반응형
TextField(
decoration: new InputDecoration(
border: InputBorder.none,
focusedBorder: InputBorder.none,
suffixIcon: Icon(Icons.search), //검색 아이콘 추가
contentPadding: EdgeInsets.only(left: 5, bottom: 5, top: 5, right: 5),
hintText: '힌트'
),
),
- hint text를 vertical cent로 하고 싶다면
TextFormField(
decoration: InputDecoration(
contentPadding: EdgeInsets.zero
)
zero로 해준다
728x90
반응형
'Flutter' 카테고리의 다른 글
[j Flutter] 스크롤뷰 바닥감지 (0) | 2020.05.14 |
---|---|
[j Flutter] xcode에서 ios 빌드시 오류처리방법 (0) | 2020.05.12 |
[j Flutter] List 로딩 중 구현 with progressbar (0) | 2020.04.22 |
[j Flutter ] 앱 종료하기 (0) | 2020.04.08 |
[j Flutter] 상태바, 내비게이션 바 보이기/감추기 (0) | 2020.04.08 |