如何使图像继承其父级的大小? (React Native)

时间:2016-09-30 02:34:04

标签: image reactjs react-native flexbox

这是我喜欢的布局:

Desired layout

这是我添加图片时会发生什么:

Current layout

我希望Image尊重其父级大小。我该怎么做?

2 个答案:

答案 0 :(得分:2)

尝试将图像设置为

     width: null,
     height: null,
     flex: 1

答案 1 :(得分:1)

我最后通过这样做手动计算图像的宽度:

screenWidth/7 - margin

这是一个黑客,所以如果有人有正确的方法,我很乐意听到它!