How to reposition image in ImageBackground React Native?

352 views Asked by At

I have a big image that I'm using in the React Native ImageBackground component.

function Component(){
  return <ImageBackground style={{
    height: 300,
    width: '100%',
  }}/>;
}

The size is correct, but I would like to reposition the image internally as in object-position in css. What is an equivalent style selector?

1

There are 1 answers

0
Alap Anerao On

Try using resizeMode prop of Image. ImageBackground inherits app the properties of Image. Setting correct image resizeMode should resolve your issuel. Refer this : https://reactnative.dev/docs/image#resizemode