flutter ListView取消头部空白

ListView头部有一段空白区域,是因为当ListView没有和AppBar一起使用时,头部会有一个padding,为了去掉padding,可以使用MediaQuery.removePadding:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Widget _rubbishList(){
return MediaQuery.removePadding(
removeTop: true,
context: context,
child: Container(
margin: EdgeInsets.only(left: 20,right: 20),
height: ScreenUtil().setHeight(700),
child: ListView.builder(
itemCount: rubbishList.length,
itemBuilder: (context,index){
return _cardItem(index);
}
)
)
);

}
坚持原创技术分享,您的支持将鼓励我继续创作!