我的问题与this SO question基本相同。我将网格视图设置为一个简单的ListView
(就像在链接的问题中一样),但在使用renderScrollComponent
时我无法使其工作。
我的代码如下所示:
<ListView
ref="ListView"
contentContainerStyle={styles.list}
dataSource={ this.state.dataSource }
renderRow={this.renderCategories}
renderScrollComponent={props => (
<ParallaxScrollView
*start of parallax component*
样式表:
list: {
flexDirection: 'row',
flexWrap: 'wrap'
},
item: {
flexDirection: 'row',
margin: 3,
width: 120
},
当我评论renderScrollComponent
时,网格工作正常。所以我的问题是如何在renderScrollComponent
内部进行网格工作?我是否必须在某处应用特定风格?
(注意我在renderScrollComponent
使用this repo进行视差观看。