React Native:固定高度在NativeBase中列出

时间:2017-06-07 14:43:26

标签: react-native native-base

我使用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>

0 个答案:

没有答案