I am trying to style a legend I created for a android map in my react-native project. I am having a hard time getting it to position correctly. Having to use the absolute pr
Just add resizeMode='contain' as a property to your image and not in its style:
resizeMode='contain'
<Image source={require('../../img/legend.png') } style={styles.legend} resizeMode='contain' />
Reference: http://facebook.github.io/react-native/docs/image.html#resizemode