Created
September 10, 2018 06:28
-
-
Save jbutko/33832e50f3d95a73842e763b3791f586 to your computer and use it in GitHub Desktop.
React Native: Detect ScrollView has reached the end
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import {ScrollView, Text} from 'react-native'; | |
const isCloseToBottom = ({layoutMeasurement, contentOffset, contentSize}) => { | |
const paddingToBottom = 20; | |
return layoutMeasurement.height + contentOffset.y >= | |
contentSize.height - paddingToBottom; | |
}; | |
const MyCoolScrollViewComponent = ({enableSomeButton}) => ( | |
<ScrollView | |
onScroll={({nativeEvent}) => { | |
if (isCloseToBottom(nativeEvent)) { | |
enableSomeButton(); | |
} | |
}} | |
scrollEventThrottle={400} | |
> | |
<Text>Here is very long lorem ipsum or something...</Text> | |
</ScrollView> | |
); | |
export default MyCoolScrollViewComponent; | |
// via From https://stackoverflow.com/questions/41056761/detect-scrollview-has-reached-the-end |
Great work!
Thank you!! This is especially useful when using 2 FlatLists inside a ScrollView and trying to update them both.
May you live long... This is the only valid way up to 0.72
thank. It's work
Still works on react native 0.72.6
This is not working for some of the screen sizes for Android
Allah razı olsun çok uğraştım ama oldu sonunda. God bless you bro!
it is still a valuable detection in 2024 <3
great
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
5 years later and this has really helped my project, thank you!