I am fetching data from a database and want to implement refresh loader on the same screen and same list. But refresh loader takes a list and I have tried to implement refresh loader with the future list but no success.
Asked
Active
Viewed 188 times
0
-
could you add the code you are using ? – diegoveloper Jan 22 '19 at 15:51
1 Answers
1
I guess u want that:
RefreshIndicator(
child: _futureBuilder(),
onRefresh: () => _refresh(),
),
The _futureBuilder() is a normal future builder. Try the refresh indicator!

Katekko
- 335
- 3
- 10