首页 > 解决方案 > 如何滚动到 React Native 中的视图?

问题描述

我正在使用 React Native 开发一个应用程序。在那里,我想View在按下按钮时滚动到 a 。我试过这样的事情。

render() {
  return(
    <View ref={field => this.myView = field} >
      //something inside the view
    </View>
  )
}

然后,尝试

this.myView.focus()

但是,它不起作用。

我想得到如下 GIF 演示中所示的结果。这个怎么做?

在此处输入图像描述

标签: javascriptreact-nativeviewfocus

解决方案


您应该存储ScrollViewref 并使用scrollViewRef.scrollTo()

render() {
  return(
    <ScrollView ref={ref => this.scrollViewRef = ref}>
      <View 
        // you can store layout for each of the fields
        onLayout={event => this.layout = event.nativeEvent.layout}
      > 
        // some field goes here
      </View>
    </ScrollView>
  )
}

然后当发生错误时,只需滚动到您的字段this.scrollViewRef.scrollTo({ y: this.layout.y, animated: true });

更新: 可以在这个 repo中找到一个工作示例。


推荐阅读