react-native – ListView无法滚动

前端之家收集整理的这篇文章主要介绍了react-native – ListView无法滚动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
您可以在附加的GIF中看到,我无法浏览ListView。一旦我释放鼠标,视图就会回到原来的位置。

我已经阅读了文档,似乎滚动应该只是工作。这里是render()的实现:

render: function(){
  return (
    <ListView
      automaticallyAdjustContentInsets={false}
      initialListSize={9}
      dataSource={this.state.dataSource}
      renderRow={this.renderTrack}
      renderSectionHeader={this.renderSectionHeader}/>
  );

您的ListView实际上可能相当小,但不会以可见的溢出方式出现。尝试在ListView的样式属性上设置flex:1或height:587。
原文链接:https://www.f2er.com/react/301964.html

猜你在找的React相关文章