ptomasroos / react-native-tab-navigator

A tab bar that switches between scenes, written in JS for cross-platform support
MIT License
2.4k stars 415 forks source link

Is it possible to change the active color for icons #17

Closed solchea closed 8 years ago

solchea commented 8 years ago

Thanks for implementing this, it's been great so far. I'm wondering how to set the active/inactive colors for icons. For TabBarIOS, there was a tintColor prop. So for the below example, how would I change the icon for the A tab to white instead of blue? Thanks in advance for your help.

screen shot 2015-10-29 at 8 56 51 am

ide commented 8 years ago

The TabItems have a prop called renderSelectedIcon -- you could return a white image (use tintColor to help you) from there.

solchea commented 8 years ago

Perfect - thanks for your help.