flutter中listview移除padding

MediaQuery.removePadding(
    removeTop:true,//移除头部padding,使listview沉浸
    context:context,
    child:NotificationListener(//监听且只监听ListView的滚动
        onNotification:(scrollNotification)=>{
            if(scrollNotification is ScrollUpdateNotification &&             scrollNotification.depth == 0){
                _onScroll(scrollNotification.metrics.pixels);
            }
        },
        child:ListView()
    )
)

你可能感兴趣的:(flutter)