react-native-material-ui
react-native-material-ui copied to clipboard
Color of Action Button
How can I set color of Action Button?
Hi @Guseyn check this issue, it could help https://github.com/xotahal/react-native-material-ui/issues/432
Basically you have to use container
to change its color.
Like this:
<ActionButton
style={{container: { backgroundColor: '#047cc4' }}}
...