I am using react-navigation where I am able to create the tab bars with text headings on them. I want to display images on them instead of texts. Is there a way to do it?
This is the code which I am using but it doesn't works. Any suggestion on how to do it the right way?
static navigationOptions = {
tabBarIcon: (
<Image style={{ width: 50, height: 50 }}
source={require('./../images/Logo.jpg')} />
)
}
Try using a function instead: