I want to override the drawer image in the navBar.
An image gets automatically resized.
The image does not render if the image is larger than the default image, which is very small.
When using a small image, the icon is shown correctly.
<Scene key='main' drawerImage={require('../images/menu-icon.png')} />I'm having the same issue
I can't get this reproduced. Can you give me an example of your full component?
I have the same issue when trying to change the drawerImage
Do it like this:
drawerImage={{uri: 'menu', height: 20, width: 20, resizeMode:'stretch', color: 'white'}}
or in your case probably this works :
drawerImage={{source: require('../../path'), height: 20, width: 20, resizeMode:'stretch', color: 'white'}}
Probably its not working in my case.