我将图像存储在我要显示的Meteor App中,只显示文本。 这是组件
Flowable<Long> result = tickEverySecond.throttleLast(5, TimeUnit.SECONDS, testScheduler);
}
,json文件如下所示:
render(){
const{nom, emails, picture} = this.props.navigation.state.params;
console.log({picture})
return(
<View>
<Card>
<Image
style={{width: 50, height: 60}}
source={{uri: picture}}
/>
<Text>{nom}</Text>
<Text>{emails[0].email}</Text>
</Card>
</View>
);
}