flutter_listview_loadmore
flutter_listview_loadmore copied to clipboard
How to load more if i write the load more function with Stream
Hi, i write a Bloc with Rx pattern. The loadMore function required to return Future
class LoadMoreBloc {
void loadMoreFeed() {
// API.loadFeed().listen(); <--- how do i convert it into Future?
}
}