I am trying to have two elements on 1 row, both with different heights. Flexbox seems to be adjusting the height of all elements when the other element's height adjust.
Any suggestions?
Sample Code:
<View style={{flex: 1, flexDirection: 'row'}}>
<View style={{flex: 1}}>
<Text>Some Content with a longer height</Text>
</View>
<View style={{flex: 1}}>
<Text>Some Content with now the same height</Text>
</View>
</View>