“Réagir la largeur d'assign native à l'image” Réponses codées

Réagir la largeur d'assign native à l'image

import { Dimensions } from "react-native";
const win = Dimensions.get('window');

<Image
  style={{
    width: win.width/2,
    height: win.width/2,
    resizeMode: "contain",
    alignSelf: "center",
    borderWidth: 1,
    borderRadius: 20,
  }}
  source={{uri:'https://facebook.github.io/react/img/logo_og.png'}}
  resizeMode="stretch"
/>
Dayanaohhnana

Réagir la largeur d'assign native à l'image

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
}
Dayanaohhnana

Réponses similaires à “Réagir la largeur d'assign native à l'image”

Questions similaires à “Réagir la largeur d'assign native à l'image”

Plus de réponses similaires à “Réagir la largeur d'assign native à l'image” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code