ListView를 사용하면 아래에 의도치 않은 여백이 생긴다. 위젯 자체의 패딩을 수정해주면 된다.
ListView(
padding: EdgeInsets.zero,
...
);
Reference
https://stackoverflow.com/questions/52105557/how-to-remove-automatic-safearea-from-listview
How to remove automatic SafeArea from ListView?
I just added a ListView as a child of Scaffold > Stack and it appears to have SafeArea at the top. Column does not have this problem. Is there any way for me to remove it? Container( color: C...
stackoverflow.com
728x90
'Flutter' 카테고리의 다른 글
[Flutter] for loop in row; Row에서 반복하여 위젯을 그리기 (0) | 2022.04.21 |
---|---|
[Flutter] "A RenderFlex overflowed by 143 pixels on the right." (0) | 2022.04.21 |
[Flutter] dropdown button (0) | 2022.04.20 |
[Flutter] Color widget by contidion ; 조건에 따라 색 변경 (0) | 2022.04.20 |
[Flutter] page swipe / slidable ; 화면을 옆으로 밀기 (0) | 2022.04.20 |