When I try to load the image from the props, I get the following warningsourceimage error
: unsuccessful type of support: invalid prop specified in
here is my code
Src / components / general / Header.js
<View style={viewStyle}>
<Text style={textStyle}>{props.children}</Text>
<Image style={{height:25, width:25}} source={props.imageUri} />
</View>
SIC / index.js
<Header imageUri='../../images/logout.png'>My App</Header>
and the image is on the path src / images / logout.png
please, help
source
share