Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ListView或者GridView我们Container用. 但是我怎样才能给背景颜色SliverGrid呢?
ListView
GridView
Container
SliverGrid
我将把我的解决方案放在这里。我用 Container 包裹我的个人物品并提供填充物。
当最后一行不完整时,我只添加虚拟项目,它是一个带有 bg 颜色的容器,直到行被填满。
或者您可以用具有背景颜色的 Container 包装您的 CustomScrollView:
Container( color: Colors.grey[200], child: CustomScrollView( slivers: <Widget>[] ) )