scrollTo()
不能在本机反应-ScrollView
组件
我试图通过点击屏幕底部的按钮来滚动到屏幕顶部。屏幕是可滚动的,并且ScrollView
组件中有很多内容和其他组件。
滚动到顶部的功能
_scrollToTop = () => {
this.sv.scrollTo({x: 0, y: 0, Animated: true})
}
渲染中的组件以调用_scrollToTop函数
<ScrollView ref={c => (this.sv = c)}>
.
.
.
.
<Button onPress={this._scrollToTop}>
<Icon name="arrow-up" } />
</Button>
</ScrollView>
但是,当点击按钮时,什么也没有发生。
“反应”:“ 16.8.6”,
“ react-native”:“ 0.60.5”,