react-native-component-inview
react-native-component-inview copied to clipboard
Still not work when multi components
<ScrollView>
<InView onChange={(isVisible) =>checkVisible(isVisible)}
collapsable={false}
removeClippedSubviews={false}>
<View style={ {height:400,margin:10,backgroundColor: isInView ? 'yellow' : '#f9c2ff'}}>
<Text>1</Text>
</View>
<View style={ {height:400,margin:10,backgroundColor: isInView ? 'yellow' : '#f9c2ff'}}>
<Text>2</Text>
</View>
<View style={ {height:400,margin:10,backgroundColor: isInView ? 'yellow' : '#f9c2ff'}}>
<Text>yay</Text>
</View>
</InView>
</ScrollView>