反应具有不同顶部和底部背景颜色的本机视图容器
React native view container with different top and bottom background color
正在尝试创建带有软边框的视图。页眉应该有不同的颜色,页脚也应该有不同的颜色。我尝试了所有的可能性,但无法弄清楚。目前我有下面的代码,它创建了一个带有软边框的视图,我想实现这个。
<View style={{borderWidth: 1, borderRadius: 10, padding: 10}}>
<View>
<Text style={styles.name}>
SECTOR REPORTS
</Text>
<Button title="ADD SECTOR REPORT"/>
</View>
正在尝试创建带有软边框的视图。页眉应该有不同的颜色,页脚也应该有不同的颜色。我尝试了所有的可能性,但无法弄清楚。目前我有下面的代码,它创建了一个带有软边框的视图,我想实现这个。
<View style={{borderWidth: 1, borderRadius: 10, padding: 10}}>
<View>
<Text style={styles.name}>
SECTOR REPORTS
</Text>
<Button title="ADD SECTOR REPORT"/>
</View>