获取React Native中ScrollView的当前滚动位置
是否可以获取当前滚动位置或<ScrollView>
React Native中组件的当前页面?
所以像这样:
<ScrollView horizontal={true}
pagingEnabled={true}
onScrollAnimationEnd={() => {
// get this scrollview's current page or x/y scroll position
}}>
this.state.data.map(function(e, i) {
<ImageCt key={i}></ImageCt>
})
</ScrollView>
回答:
尝试。
<ScrollView onScroll={this.handleScroll} />
然后:
handleScroll: function(event: Object) { console.log(event.nativeEvent.contentOffset.y);
},
以上是 获取React Native中ScrollView的当前滚动位置 的全部内容, 来源链接: utcz.com/qa/431665.html