当我尝试将图像添加到我的第一个反应本机应用程序时,即使它发生也不会出现。
我确实喜欢文档中所说的但问题仍然存在
这是我的代码:
<Image source={{uri:'https://facebook.github.io/react/img/logo_og.png'}}
resizeMode="stretch" style={{
alignSelf: 'center',
height: 150,
width: 150,
borderWidth: 1,
borderRadius: 75
}}/>
我对本地图像使用了 require ,也是一样的:
<Image source={require('./images/item7.jpg')}
resizeMode="stretch" style={{
alignSelf: 'center',
height: 150,
width: 150,
borderWidth: 1,
borderRadius: 75
}}/>