我是新的React Native。我试图改变容器的背景视图似乎不起作用。我附上了下面的代码。有人能告诉我下面的代码有什么问题吗?
const HomeScreen = () => {
return (
<SafeAreaView style={{ flex: 1 }}>
<View style={{ flex: 1, backgroundColor: '#FF0000' }}>
<Text style={{
color: COLORS.Text,
marginLeft: 14,
marginTop: 16,
width: 100,
height: 20
}}>Hello world</Text>
</View>
</SafeAreaView>
);
1条答案
按热度按时间pod7payv1#
检查以下代码:
有关详细信息,可以浏览SafeArea Documentation.