我正在使用react-native构建一个家庭项目。在使用布局时,父容器内的视图是重叠的。我使用flexbox来设计表单的布局,但无法通过它。下面是我编写的示例代码,用于解释问题所在。
<View style= {styles.Container}>
<View style={{flex:1, backgroundColor:'red'}}><Text>RED</Text></View>
<View style={{flex:1, backgroundColor:'green'}}><Text>GREEN</Text></View>
<View style={{flex:1, backgroundColor:'blue'}}><Text>BLUE</Text></View>
</View>
Container: {
flex:1,
backgroundColor:'grey',
flexDirection:'column',
}