react-native-draggable-flatlist
react-native-draggable-flatlist copied to clipboard
Scroll while dragging item in Scrollview
Is your feature request related to a problem? Please describe. I use the flatlist in a Scrollview, when the flatlist is too long, I can't scroll to the end of the flatlist while dragging.
Describe the solution you'd like Offer a solution to scroll the flatlist and the scrollview while dragging an item to the bottom.
Describe alternatives you've considered For now I have to scroll the scrollview to see the other items of the flatlist.
use this line inside flatlist just like this initialNumToRender={myArrayHere.length} // complete code <FlatList data={myArrayHere} renderItem={renderItem} keyExtractor={item => index.toString()} initialNumToRender={myArrayHere.length} />