I have the following below SliverGrid which is being populated from an API. I don't know the number number of items until I have made the API call. The current implementation below render the text 'No More' once I scroll past the past items because I have not set the childCount. Is there a way for me to set childCount . I would like for it to stop scrolling and rendering anything.
I have tried creating a variable to hold the childCount variable and reseting that inside the snapshot.hasData block, however the new value seems to ignored.
return SliverGrid(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 4),
delegate: SliverChildBuilderDelegate(
(BuildContext context,int index)
{
return StreamBuilder(
stream: bloc.attributesStream ,
builder: (context, snapshot)
{
if(snapshot.hasData)
{
return HomeIconCell(snapshot.data[index]);
//want to set childCount to snapshot.data.length
}
return Text("No more");
},
);
},
childCount: gridChildCount
));
}
If this is a
StatefulWidget
you can usesetState
to update the grid count.