I have:
<Card>
<Card.Cover source={{ uri: props.source.uri }}
resizeMode={`cover`} style={{flexDirection: 'column'}}/>
<Card.Content>
{/* <Title>Card title</Title> */}
<Text>Card content</Text>
</Card.Content>
</Card>
And am trying to scale the Card.Cover
so that each card is not the same height - but rather it depends on the image dimensions. Currently, all of the cards have the same height and width. How can I do this?