📌  相关文章
📜  将本机分配宽度反应到图像 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:03:14.378000             🧑  作者: Mango

代码示例2
First import Dimensions from react-native

import { Dimensions } from 'react-native';
then you have to get the dimensions of the window

const win = Dimensions.get('window');
Now calculate ratio as

const ratio = win.width/541; //541 is actual image width
now the add style to your image as

imageStyle: {
    width: win.width,
    height: 362 * ratio, //362 is actual height of image
}