I am using
import {CollapsibleHeaderTabView} from "react-native-tab-view-collapsible-header";
import {HScrollView} from "react-native-head-tab-view";
I push a FlastList into HScrollView
<HScrollView
index={0}
style={{backgroundColor: "#FFFFFF"}}
// onScroll={(event)=>console.log("hitme2")}
// onScroll={()=>console.log("hitme")}
>
<FlatList
data={DATA}
renderItem={renderItem}
keyExtractor={item => item.id}
onEndReached={onEndReached}
/>
</>
Event onEndReached of flashlist will not working instead of that scroll off Hscrollview working.
I want catch event of Hscollview to make custom same onEndReached.
Please help me!
React: "16.13.1"
React Native: "https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz"
React-Native-Gesture-Handler: "^1.10.3"