We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This line
if (!(this.props.ignoreInertialScroll && this.isTouching)) {
Should be
if (!this.props.ignoreInertialScroll || this.isTouching) {
Another issue is that if I pull and hold, It will load the list multiple times.