0

我有:

        <StyledSurface style={{ flex: 1, flexDirection: 'row', flexWrap: 'wrap' }}>
            {conversations.map((c, i) => (
                <Surface style={{ backgroundColor: 'red', width: '46%', margin: '2%', flexDirection: 'column', flexShrink: 1, alignSelf: 'flex-start'}} key={i}>
                    <Text style={{flex: 1}}>{c.title}</Text>
                </Surface>
            ))}
        </StyledSurface>

这最终看起来像:

在此处输入图像描述

但是我希望每个红色框都缩小(垂直)以适应内容并具有相等的间距?

我错过了什么?

4

1 回答 1

1

在 View 容器上添加:

alignSelf: 'flex-start',

应该做的伎俩

于 2020-05-01T14:23:16.973 回答