📌  相关文章
📜  自动滚动查看 react-native - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:09.390000             🧑  作者: Mango

代码示例1
 this._scrollView = view} />
And set the scroll position elsewhere with:

scrollToRow(itemIndex) {
  this._scrollView.scrollTo({y:itemIndex * ROW_HEIGHT});
}