react-native – React Native ListView:如何滚动到特定行

前端之家收集整理的这篇文章主要介绍了react-native – React Native ListView:如何滚动到特定行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在NativeiOS中,您可以使用以下命令将UITableView滚动到特定的UITableViewCell:
[tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:87 inSection:0] 
         atScrollPosition:UITableViewScrollPositionMiddle animated:NO];

..或类似的.

例如,如果ListView持有100个项目,我想滚动使第87个项目可见.

看看React Native ListView Docs,没有什么明显的.

有没有人设法实现这一目标?我意识到ListView没有包装UITableView所以我们不能只公开该方法.

编辑:看起来对此有一些支持是在0.19-rc版本中,请查看此https://github.com/facebook/react-native/releases

https://github.com/facebook/react-native/commit/33e05a11f00d1455f39b6dfef1c76c4130df02e5

使用带有contentOffset = {{x:offsetX,y:offsetY}}的 ScrollView并根据要滚动到的行计算偏移量变量.
原文链接:https://www.f2er.com/react/443146.html

猜你在找的React相关文章