How to give background color to SliverGrid?

6.5k Views Asked by At

For ListView or GridView we wrap it with Container. But how can I give background color to SliverGrid?

3

There are 3 best solutions below

0
On

Try DecoratedSliver as wrapper around SliverGrid.

This way, you can give any part of your Sliver* a decoration.

0
On

I'll just drop my solution here. I wrap my individual items with Container and give padding.

When the last row is not complete, I just add dummy item which is a Container with bg color until row is filled.

2
On

Or you could wrap your CustomScrollView by a Container having a background color:

Container(
    color: Colors.grey[200],
    child: CustomScrollView(
      slivers: <Widget>[]
    )
)