react-native-draggable-flatlist icon indicating copy to clipboard operation
react-native-draggable-flatlist copied to clipboard

Scroll while dragging item in Scrollview

Open 1Jesper1 opened this issue 3 years ago • 1 comments

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.

1Jesper1 avatar Aug 31 '21 20:08 1Jesper1

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} />

umairalirehan avatar Sep 16 '21 13:09 umairalirehan