Home > database >  Trying to extend the bottom of an image in react native
Trying to extend the bottom of an image in react native

Time:01-21

I am getting an error in my code, style does not exist?

image={require, style={ height: 30 }('../images/49.jpeg')}>

CodePudding user response:

put the style in a view surrounding the image

<View style={{height: 30}}>
  <Image source={require('/images/49.jpeg')} />
</View>

CodePudding user response:

This is wrong formula

It should be like that

<Image style={{height: 30}} source={require('/images/49.jpeg')} />
  •  Tags:  
  • Related