React Native responsive image width while width/height ratio of image keeps the same

后端 未结 4 1471
伪装坚强ぢ
伪装坚强ぢ 2021-02-14 14:35

I want a React Native Image to have a width of 50% of the available screen-width, no modification to width:height ratio of the image.

Any hints how to solve this?

4条回答
  •  有刺的猬
    2021-02-14 15:35

    The verified answer didn't work for me but gave me a good idea.

    It probably didn't work because my images are within a ScrollView.

    Since images require a width and a height, my solution has been to get the width of the screen and: a) For image width: multiply screen width by % of the screen width I want my image to take. b) For image height: multiply screen width by % of the screen width I want my image to take by height/width aspect ratio.

    const { width } = Dimensions.get('window');
    
    
    

    Works nicely, but it will be necessary to dynamically define the % of width screen you want the image to take to make it work good responsively and for various orientations.

提交回复
热议问题