我是React native的新手。
我见过类似的问题,但没有回答我在寻找什么。
我的问题是,两者之间(性能,行为)有什么区别?
<View style={{ flex: 1, background: 'blue' }}>
<Text style={{ flex: 0.8, background: 'red' }}>Hello</Text>
<Text style={{ flex: 0.2, background: 'brown' }}>World</Text>
</View>
和
<View style={{ height: '100%', background: 'blue' }}>
<Text style={{ height: '80%', background: 'red' }}>Hello</Text>
<Text style={{ height: '20%', background: 'brown' }}>World</Text>
</View>
因为我看不到两者的区别。