I am using scrollview in react native but it's onendreached not working how can i use onendreached in horizontal scroll view
<Animated.ScrollView
horizontal
scrollEventThrottle={1}
showsHorizontalScrollIndicator={false}
snapToInterval={CARD_WIDTH}></Animated.ScrollView>
I need horizontal flatlist in this if i use horizontal in the scroll view. then flatlist onendreached not working. If i remove horizotal from scroll view then onscroll not working in the scrollview. So i am looking for a function that will load more data as it will reach on the end of scrollview.