React Native 和 Flexbox 视图

React Native and Flexbox Views

我正在尝试在生成的评论列表上方添加一个 TouchableHighlight + View。我似乎无法将评论的开头更靠近 TouchableHighlight 的结尾(它在文本之后结束,下面没有 padding/margin)。

这是相关的 JSX:

  renderListView: function() {
    return (
      <View style={styles.container}>
      <TouchableHighlight onPress={this.onSelect}>
      <View style={styles.header}>
        <Text style={styles.text}>
        Visit Site
        </Text>
      </View>
      </TouchableHighlight>
      <ListView
        dataSource={this.state.dataSource}
        renderRow={this.renderCommentCell}
        style={styles.commentListView} />
      </View>
      )
  },

这是我的 styles.js:

container: {
  flex: 1,
  marginTop: 65,
  backgroundColor: '#FFFFFD',
  flexDirection: 'column',
},
commentListView:{
  margin: 0,
  marginTop: 10,
  marginRight: 15,
  padding: 0,
  backgroundColor: '#FFFFFD',
},
centering: {
  alignItems: 'center',
  justifyContent: 'center',
  height: 80
},
header: {
  alignItems: 'center',
  flexDirection: 'row',
  flex: 1
},
loadingText: {
  fontSize: 75,
  textAlign: 'center',
  marginTop: 75,
  marginBottom: 10,
  marginRight: 10,
  color: '#D6573D'
},
text: {
  textAlign: 'center',
  flexDirection: 'row',
  justifyContent: 'center',
  alignSelf: 'stretch',
  fontSize: 40,
  flex: 1
}

此外,这是我所看到的屏幕截图:

automaticallyAdjustContentInsets={false} 添加到您的 ListView