You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I user this view and pull to refresh ,and when I pull down , the circle loading view still visible even after the data has update .I don't know which parameters can hidden the circle loading view.And this is my code:
<GiftedListView
contentContainerStyle = {styles.list_view_style}
dataSource = {this.state.dataSource}
rowView = {this.renderRow}
initialListSize = {10}
pageSize = {10}
onEndReached = {this.onEndReached}
onEndReachedThreshold = {this.state.endReachedThresholdNum}
enableEmptySections = {true}
onFetch={this.refreshData}
firstLoader={true} // display a loader for the first fetching
pagination={false} // enable infinite scrolling using touch to load more
refreshable={true} // enable pull-to-refresh for iOS and touch-to-refresh for Android
withSections={false} // enable sections
paginationAllLoadedView={this._renderPaginationAllLoadedView}
customStyles={{
paginationView: {
backgroundColor: '#eee',
},
}}
refreshableTintColor="blue"
/>
The text was updated successfully, but these errors were encountered:
I user this view and pull to refresh ,and when I pull down , the circle loading view still visible even after the data has update .I don't know which parameters can hidden the circle loading view.And this is my code:
The text was updated successfully, but these errors were encountered: