I want to get data from REST api, using future SliverGrid should build. But it is not showing, shows just white color and also I didn't know how to specify the total grid items count in SliverGrid. So if it shows it must generate more than the actual count.
SliverGrid(
gridDelegate:
SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 2),
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index)
{
return FutureBuilder(
future: _items,
builder: (context, snapshot) {
return snapshot.connectionState == ConnectionState.done
? snapshot.hasData
? GridItem()
: Text('Retry')
: Text('progress');
},
);
},
),)
Demo Snippet
future
and use inside
CustomScrollView
Full Widget
Does it solve your question?