I am trying to install shoutem ui to my project. In one component I used listview
from shoutem ui! But I only can display item. I can't handler onRefresh
and onLoadMore
?
Can anyone help me?
Here is listview:
<ListView
data={groupedData}
renderRow={this.renderRow}
loading={this.state.refreshing}
onLoadMore ={this.loadMoreData}
onRefresh={this.getNewData}
/>
I have 2 functions for getnew, data and loadmore. They can work with normal listview.