본문 바로가기
Flutter

[Flutter] remove listview builder padding; ListView의 패딩

by hymndaniel 2022. 4. 21.

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