Reputation: 11
<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
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