【发布时间】:2018-01-16 20:24:13
【问题描述】:
我是 React Native 的新手,并试图显示标题栏(导航栏)背景颜色。 下面尝试了一些方法。
return (
<View style={styles.container}>
<NavigationBar
title= {titleConfig}
/>
</View>
);
}
}
const titleConfig = {
title: 'XYZ',
style: {
backgroundColor: '#2ec76e',
},
};
const styles ={
container: {
backgroundColor: '#24686e',
},
}
【问题讨论】:
-
只有标题背景颜色可以正常工作!!!
标签: css reactjs react-native