react-native SectionList scrollTo

时间:2017-06-10 10:22:41

标签: react-native

我是反应原生的新手并尝试使用SectionList。到目前为止,一切正常。但是,我似乎无法使用facebook文档中定义的 scrollToLocation 函数。有人试过使用它或类似的东西吗?基本上,我想滚动到特定的部分和项目。

     return Promise.all([
       props.orderActions.set(orders, true),
       props.orderActions.set(orders, false),
     ]).then(() => {
       return this._ordersList.scrollToLocation({
         animated: false,
         sectionIndex: 0,
         itemIndex: historyItems.length - 1
       })
     })

_ordersList是对SectionList组件的引用。

谢谢!

1 个答案:

答案 0 :(得分:1)

升级到0.45就可以了。有性能问题,但设法通过使用PureComponent

来解决它