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
After dragging the item, FlatList onViewableItemsChanged no longer triggers.
[email protected] [email protected]
I noticed that when it happens like this there is this bug:
<ScrollView scrollEnabled={this.state.scrollEnabled}> <DraggableGrid numColumns={3} renderItem={this.render_item} data={this.state.data} onDragStart={() => { this.setState({scrollEnabled: false}) }} onDragRelease={(data) => { this.setState({data, scrollEnabled: true}); }} /> </ScrollView>
The text was updated successfully, but these errors were encountered:
When I did it as mentioned here #84 (comment) the problem was solved. I think updating it as state causes such a problem.
Sorry, something went wrong.
No branches or pull requests
After dragging the item, FlatList onViewableItemsChanged no longer triggers.
[email protected]
[email protected]
I noticed that when it happens like this there is this bug:
The text was updated successfully, but these errors were encountered: