We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've tried implementing this with npm, but finding that the onInfiniteLoad doesn't ever fire? Is there some magic trick I'm missing here?
<ChatView flipped={true} reversed={true} scrollLoadThreshold={200} onInfiniteLoad={this.loadMore} > {this.renderChats()} </ChatView>
this.loadMore = () => { console.log('Loading more!') this.setState({limit:this.state.limit + 20}) }
The text was updated successfully, but these errors were encountered:
Sorry. I'm late.
onInfiniteLoad trigging need to shouldTriggerLoad() results is true.
onInfiniteLoad
shouldTriggerLoad()
You can add shouldTriggerLoad={() => { return true; }}
shouldTriggerLoad={() => { return true; }}
Sorry, something went wrong.
@jasongrishkoff @gimdongwoo - having the same problem, even with shouldTriggerLoad returning true
Same problem here!
No branches or pull requests
I've tried implementing this with npm, but finding that the onInfiniteLoad doesn't ever fire? Is there some magic trick I'm missing here?
The text was updated successfully, but these errors were encountered: