slivers안에서
SliverGrid(
delegate: SliverChildBuilderDelegate(
(c,i) => Container(color : Colors.white,margin: EdgeInsets.all(5),),
childCount: 51,
),
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: 3 ))
이런식으로 되어있다고 할때 container사이에 margin으로 간격을 줬는데 그사이의 색깔을 바꾸고싶은데 어떻게하면 좋을까요?