Green: full screen view Red: is a view style absolute bottom:0 Blue: is a view style absolute height:‘100%’
WHAT I WANT I want find the way to get height of Red View (height isn’t determined). This height I want to use it for marginBottom for Blue View.
<View style={{
backgroundColor: 'green',
flex:1
}}>
<View style={{
backgroundColor: 'blue',
position:'absolute',
height:'100%',
left:0,
right:0,
top:0,
marginBottom: HEIGHT_OF_RED_VIEW
}}>
</View>
<View style={{
backgroundColor: 'red',
position:'absolute',
left:0,
right:0,
bottom:0,
padding:20
}}>
<Text>Lorem Ipsum</Text>
</View>
</View>
