React Native:Flex与高度

时间:2019-02-23 22:20:09

标签: reactjs react-native

我是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>

因为我看不到两者的区别。

1 个答案:

答案 0 :(得分:0)

查看此帖子-它与响应能力有关,而不是像素百分比。 React Native: Height vs flex