해결 방법
Constranints property를 주면 된다!!
TextField(
decoration: InputDecoration(
// choose any icon of your choice here
prefixIcon: Icon(Icons.person),
// set the prefix icon constraints
prefixIconConstraints: BoxConstraints(
minWidth: 25,
minHeight: 25,
),
),
),
[Link]
- 🔗 https://stackoverflow.com/questions/61648677/how-to-reduce-padding-on-prefixicon-on-textfield
'Flutter > ERROR' 카테고리의 다른 글
Android Emulator Warning 해결 (0) | 2021.12.30 |
---|---|
[GETX] Binding 문제 (0) | 2021.12.20 |
[ERROR] M1 에서 구글 로그인이 안되는 에러 (0) | 2021.11.09 |
[ERROR] ios 프로젝트 설정 오류 - Runner config, cocoapods (0) | 2021.11.09 |