Ejemplo 1: reaccionar el ancho de la asignatura nativa a la imagen
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"
/>
Ejemplo 2: cambiar el tamaño de la imagen reaccionar nativo
image : {
width : null,
resizeMode : 'contain',
height : 220
}
Ejemplo 3: cambiar el tamaño de la imagen reaccionar nativo
flex: 1,
width: 50,
height: 50,
resizeMode: 'contain'
Ejemplo 4: Reacción de imagen nativa
Adding Image
Let us create a new folder img inside the src folder. We will add our image (myImage.png) inside this folder.
We will show images on the home screen.
App.js
import React from 'react';
import ImagesExample from './ImagesExample.js'
const App = () => {
return (
<ImagesExample />
)
}
export default App
Local image can be accessed using the following syntax.
image_example.js
import React, { Component } from 'react'
import { Image } from 'react-native'
const ImagesExample = () => (
<Image source = {require('C:/Users/Tutorialspoint/Desktop/NativeReactSample/logo.png')} />
)
export default ImagesExample
Ejemplo 5: cambiar el tamaño de la imagen reaccionar nativo
flex: 1,
width: 50,
height: 50,
resizeMode: 'contain'
Ejemplo 6: reaccionar el ancho de la asignatura nativa a la imagen
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
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)