Open uijaswanthi opened 5 years ago
From the below example i understood that isVisible will return true even if div element visible partially because I added partialVisibility prop. But is there any way i can say if div element is partially visible or fully visible?
const YourApp = () => { return ( <TrackVisibility partialVisibility> {({ isVisible }) => <ComponentToTrack />} </TrackVisibility> ); }
From the below example i understood that isVisible will return true even if div element visible partially because I added partialVisibility prop. But is there any way i can say if div element is partially visible or fully visible?