how to style legend.png on a react-native map view

前端 未结 1 1202
一整个雨季
一整个雨季 2021-01-20 16:08

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

相关标签:
1条回答
  • 2021-01-20 16:23

    Just add resizeMode='contain' as a property to your image and not in its style:

    <Image 
      source={require('../../img/legend.png') } 
      style={styles.legend} 
      resizeMode='contain' 
    /> 
    

    Reference: http://facebook.github.io/react-native/docs/image.html#resizemode

    0 讨论(0)
提交回复
热议问题