Tell us which versions you are using:
Show tabbar
No tabbar on android emulator
Tried this
```
and this
```
Got it, we need icon={TabIcon}
For anybody else who comes afterwards, here's how TabIcon is defined in the demo:
class TabIcon extends React.Component {
render(){
return (
<Text style={{color: this.props.selected ? 'red' :'black'}}>{this.props.title}</Text>
);
}
}
Most helpful comment
Got it, we need
icon={TabIcon}