Hi there,
Unfortunately could not find a solution within your current issue tracker, so opened the one following next.
"native-base": "^2.3.3",
"react": "16.0.0",
"react-native": "0.50.4"
No borders
Borders when clicking/swiping to some tabs:


Code pretty much equal to demo code, the behaviour also occurs when running the demo code:
import React, { Component } from 'react';
import { ScrollableTab, Container, Content, Footer, Header, Title, Button, Left, Right, Body, Icon, Text, Tabs, Tab } from 'native-base';
export default class HeaderExample extends Component<{}> {
render() {
return (
<Container>
<Header hasTabs>
<Left>
<Button transparent>
<Icon name='menu' />
</Button>
</Left>
<Body>
<Title>Actueel onweer</Title>
</Body>
<Right />
</Header>
<Tabs renderTabBar={()=> <ScrollableTab />}>
<Tab heading="Onweerradar">
<Text>1</Text>
</Tab>
<Tab heading="Liveblog">
<Text>2</Text>
</Tab>
<Tab heading="Waarschuwingen">
<Text>3</Text>
</Tab>
<Tab heading="Informatie">
<Text>4</Text>
</Tab>
</Tabs>
</Container>
);
}
}
Screenshot attached above.
Android tested, iOS not tested.
Negative.
Any clues? @akhil-geekyants
@christianversloot try setting backgroundColor in tabsContainerStyle of <ScrollableTab/> to the required color for each platform.
Like
<ScrollableTab tabsContainerStyle={{ backgroundColor: platform == 'ios' ? '#F8F8F8' : '#3F51B5' }}
This fixes the problem, thanks 馃憤 馃槃
Most helpful comment
@christianversloot try setting
backgroundColorin tabsContainerStyle of<ScrollableTab/>to the required color for each platform.Like