Maintain aspect ratio of image with full width in React Native

前端 未结 12 1524
终归单人心
终归单人心 2020-12-07 13:02

I have a query regarding tag. I want an image to take entire width of parent which I do using alignSelf:stretch, but I also want the height to be according to the aspect ra

12条回答
  •  庸人自扰
    2020-12-07 13:44

    In my case i also had to set height to 'auto' :

    {
        width: 200,
        height: 'auto',
        aspectRatio: 16 / 9,
    }
    

提交回复
热议问题