As a newcomer to React Native, I am attempting to change the background color of the header bar (Navigation Bar). Here are some approaches that I have tried:
return (
<View style={styles.container}>
<NavigationBar
title={titleConfig}
/>
</View>
);
}
const titleConfig = {
title: 'XYZ',
style: {
backgroundColor: '#2ec76e',
},
};
const styles ={
container: {
backgroundColor: '#24686e',
},
}