Skip to content Skip to sidebar Skip to footer

React Native, Invalid Prop Source

I'm trying to add post in my home feed. It's adding post but not displaying image in home screen. I tried somethings but still getting same error:- I this.state.image instead of t

Solution 1:

Try this:

this.props.formikProps.setFieldValue("image", { uri: result.uri });

Images from a web link or a storage link need to be as

source={{uri: [the link]}}

Post a Comment for "React Native, Invalid Prop Source"