“Ubah Ubah Ubah Ubah Gambar Bereaksi Asli” Kode Jawaban

bereaksi lebar asign asli terhadap gambar

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

Ubah Ubah Ubah Ubah Gambar Bereaksi Asli

 flex: 1,
    width: 50,
    height: 50,
    resizeMode: 'contain' 
Joyous Jellyfish

Ubah Ubah Ubah Ubah Gambar Bereaksi Asli

	image : {
		width      : null,
		resizeMode : 'contain',
		height     : 220
	}
Lovely Lynx

Ubah Ubah Ubah Ubah Gambar Bereaksi Asli

 	flex: 1,
    width: 50,
    height: 50,
    resizeMode: 'contain' 
Joyous Jellyfish

bereaksi lebar asign asli terhadap gambar

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

Jawaban yang mirip dengan “Ubah Ubah Ubah Ubah Gambar Bereaksi Asli”

Pertanyaan yang mirip dengan “Ubah Ubah Ubah Ubah Gambar Bereaksi Asli”

Lebih banyak jawaban terkait untuk “Ubah Ubah Ubah Ubah Gambar Bereaksi Asli” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya