我使用NativeBase的List
组件来动态呈现数据。
这是我的JSX结构:
<Container>
<Content>
//some components here
<List />
<List />
<List />
//some components here
</Content>
</Container>
//whole container,content is scrollable
我希望List
组件具有固定高度,例如500
。但我希望溢出数据可以在这个固定高度窗口中滚动。
示例List
:
<List
dataArray={this.state.data}
renderRow={item =>
<ListItem>
{this.formatted(item)}
</ListItem>}
/>
我已经尝试直接将样式设置为List
,将其包装在Container
/ Content
/ View
/ ScrollView
中无效。< / p>