react-native-component-inview icon indicating copy to clipboard operation
react-native-component-inview copied to clipboard

Still not work when multi components

Open yoursinger opened this issue 3 years ago • 0 comments

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

image

yoursinger avatar Apr 26 '21 14:04 yoursinger