react-native 0.55.4
react 16.0.0
native-base 2.4.4
able to change scrollable tab's background color
unable to change the default color #3f51b5.
scrollable tab code



here is the result, the blue color unable to change

only tried on android
no
@HJ29 try setting backgroundColor to ScrollableTab
like
<Tabs renderTabBar={() => <ScrollableTab style={{ backgroundColor: "white" }} />}>
@HJ29 Closing this in a day in case of no response
@akhil-geekyants Thanks for your help! Your answer is correct and clear.
Or you can use tabBarBackgroundColor property of <Tabs>
<Tabs tabBarBackgroundColor={'#ffffff'}
@HJ29 you can try this code. 'ScrollableTab' and 'TabHeading ' are important.
<Tabs transparent renderTabBar={()=> <ScrollableTab style={{ backgroundColor: "#ccc" }} />}>
<Tab heading={
<TabHeading style={{ backgroundColor: "#ccc" }}><Icon name="home"/>
<Text>Home</Text>
</TabHeading>}>
<TabOne/>
</Tab>
</Tabs>
@HJ29 try setting
backgroundColortoScrollableTablike
<Tabs renderTabBar={() => <ScrollableTab style={{ backgroundColor: "white" }} />}>
You saved my life today :100:
Most helpful comment
@HJ29 try setting
backgroundColortoScrollableTablike