xotahal / react-native-material-ui

Highly customizable material design components for React Native
MIT License
3.79k stars 609 forks source link

centerElement style color? #433

Open asp3 opened 5 years ago

asp3 commented 5 years ago

rightElement: { color: "#000000" }, centerElement: { color: "#000000" },

//Also tried this centerElement: { textColor: "#000000" },

How would I change the text color for the centerElement? It works for the left and right, but not for the middle

moiseshilario commented 5 years ago

Hi, if you are using the <Toolbar> component, you should be able to change the text color using titleText (as you can see here: on docs and here on the code . Like this:

rightElement: {
color: "#000000"
},
titleText: {
color: "#000000"
},
...

Hope it helps ;D