NavigationBar 如何改变背景色
来源:6-4 Redux集成开发指南-上
慕神8170126
2023-08-27
react-native-navbar-plus源码中看起来是写死的
const styles = StyleSheet.create({
container: {
backgroundColor: '#2196f3',
},
写回答
1回答
-
CrazyCodeBoy
2023-08-28
设置个style属性,在里面设置背景色。
return (
<View style={[styles.container, this.props.style]}>
{statusBar}
{content}
</View>
);
}00
相似问题