Flutter解决ListView顶部留白

在一个没有AppBar的页面中,body中使用ListView会出现顶部padding留白

里边大概代码是这个样子的

这个时候仅需在ListView外套一层 MediaQuery.removePadding即可搞定

return Scaffold(

  body: Container(

    color: const Color.fromRGBO(250, 250, 250, 1),

    //解决ListView顶部留白

    child: MediaQuery.removePadding(removeTop: true,context: context, child: ListView(

        children: [],

    ),)

  ),

);

猜你喜欢

转载自blog.csdn.net/u013600907/article/details/126365995