将图像数组一个放在另一个上面部分放在React Native

时间:2017-02-09 21:57:37

标签: reactjs react-native

我正在尝试将一组图像堆叠在另一个之上,如下面的附件中所示。使用下面的代码,我可以将它们堆叠在另一个旁边,但是不能重叠它们。感谢任何帮助。

{array1.edges.map((u, i) => {
  if (i > 5) return null;
  return (
    <Image
      source={{ uri: u.node.profilePhoto.url }}
      resizeMode="cover"
      key={i}
      style={{ height: 20, width: 20, borderRadius: 10 }}
    />
    );
}
)}

overlapImages

1 个答案:

答案 0 :(得分:0)

您可以将负marginLeft设置为-10左右以获得该效果。 marginLeft: -10

同样遵循此示例rnplay.org/apps/LvdXgg以使其正常工作。