React Native:在ListView中的行之间设置空格

时间:2016-05-07 00:29:26

标签: listview react-native

我无法弄清楚如何在ListView中的行之间设置填充。我正在尝试复制卡式Feed。

1 个答案:

答案 0 :(得分:9)

为每个ListView项添加marginBottom属性:

row: {
  ...
  marginBottom: 2
}

我已经设置了一个工作示例here

enter image description here