标签: react-native react-native-scrollview
当用户在我的应用中滚动帖子时,我想要识别用户现在看到的当前帖子。
答案 0 :(得分:3)
你可以在滚动中获得y位置
<ScrollView ref={(s) => this.scrollview = s} onScroll{(event) => {console.log(e.nativeEvent.contentOffset.y)}} ... ></ScrollView>