Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

react native asign width to 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"
/>
Comment

react native image auto height

import {
  Image,
  Dimensions,
} from "react-native";


const screen = Dimensions.get("window");
Image.getSize(this.state.image_url, (width, height) => {
  //full image to screen width (Change screen.width to pixel you want)
  let imageWidthRatio = width / screen.width; 
  let imageHeight = height / imageWidthRatio;
  this.setState({ width: screen.width, height: imageHeight });
});

<Image
	style={{
       width: this.state.width,
       height: this.state.height,
       alignSelf: "center",
    }}
    source={{ uri: this.state.image_url }}
/>
Comment

react native asign width to 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
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: capitalize first letter of string javascript 
Javascript :: creating array of objects usinng reduce js 
Javascript :: regex is not empty string 
Javascript :: onclick toggle class react 
Javascript :: javascript string in string 
Javascript :: javascript console.log alternative 
Javascript :: how to add important tag js 
Javascript :: ascii code js 
Javascript :: reset function javascript 
Javascript :: react native cross out letter 
Javascript :: number object js 
Javascript :: detect logged user wordpress javascript 
Javascript :: javascript set class of element 
Javascript :: stripe react js 
Javascript :: how to get attr in vuejs 
Javascript :: not getting any response with fetch javascript method 
Javascript :: slide out navigation 
Javascript :: javascript two character integer 
Javascript :: collapse uncollapse jquery 
Javascript :: javascript random number generator 
Javascript :: reactjs hello world 
Javascript :: leaflet each layer 
Javascript :: how to run function after animation complete jquery 
Javascript :: create a solid.js project 
Javascript :: expo custom fonts 
Javascript :: firestore update array 
Javascript :: react form submit values with name 
Javascript :: find inside iframe jquery 
Javascript :: how to add new key value to json object in javascript 
Javascript :: confirm javascript 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =