"native-base": "^2.1.2",
"react": "16.0.0-alpha.6",
"react-native": "0.43.3",
Able to change the bottom border color.
The bottom border color always appear in white color.
const tabProps = {
underlineStyle: {borderColor: '#f65857'}
};
return (
<Tabs>
<Tab heading="Tab 1" {...tabProps}>
<Tab1 />
</Tab>
<Tab heading="Tab 2" {...tabProps}>
<Tab2 />
</Tab>
<Tab heading="Tab 3" {...tabProps}>
<Tab3 />
</Tab>
</Tabs>
);

Only tested in Android.
None.
@feelinc it should be tabBarUnderlineStyle: { backgroundColor: '#f65857' }
Let me know if this works
@shivrajkumar still not working. re-compiled and restart the npm, but still not working.
@feelinc tabBarUnderlineStyle needs to be applied to <Tabs> not <Tab>
applied to not?
Ah! my bad.
Applied to <Tabs> not <Tab>
Thanks a lot, it's working :)
@shivrajkumar how do I implemented the tabBarUnderlineStyle ?
<Tabs>....</Tabs>

@prasanthlrb Hi, you have to paste it to braces { } and use = after tabBarUnderlineStyle
example:
<Tabs tabBarUnderlineStyle={{ backgroundColor: '#f65857' }}>
Hi
tabBarUnderlineStyle works for the active tab but for the rest of tabs, how to change their body color?
Check NativeBase Docs https://docs.nativebase.io/
Most helpful comment
@feelinc it should be
tabBarUnderlineStyle: { backgroundColor: '#f65857' }Let me know if this works