Salicath
Salicath

Reputation: 11

Why is my image not showing in react native?

      <Image 
      source={{
      width: 300,
      height: 300,
      require: ('./assets/share.png')
      }}
      />

I have already imported Image from react-native and the picture is in the correct assets folder.

Upvotes: 1

Views: 68

Answers (1)

Erick Maeda
Erick Maeda

Reputation: 347

You are putting the width and height inside source prop. This should be inside style prop.

Also there are few errors when require an image.

 <Image 
    style={{
      width: 300,
      height: 300,
    }}
    source={require('./assets/share.png')}
/>

Upvotes: 1

Related Questions