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?