Auto scale image height with React Native

后端 未结 14 1184
陌清茗
陌清茗 2020-12-04 23:19

In my React Native app, I am fetching images from an API with unknown dimensions. How do I auto scale the height if I know my desired width?

Example:

I set t

14条回答
  •  [愿得一人]
    2020-12-04 23:54

    Have a look at this library react-native-scalable-image. It does exactly what you are asking for.

    import React from 'react';
    import { Dimensions } from 'react-native';
    import Image from 'react-native-scalable-image';
    
    const image = (
       '}}
       />
    );
    

提交回复
热议问题