当我使用网络图像时,
<View style={{flex: 1, alignItems: 'stretch'}}>
<Image
style={{flex: 1}}
source={{uri: 'https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png'}} />
</View>
但是当我将 require() 用于静态图像时:
<View style={{flex: 1, alignItems: 'stretch'}}>
<Image
style={{flex: 1}}
source={require('./googlelogo.png')} />
</View>
运行 react-native 0.37.0。这段代码被直接添加到一个新的react-native init
项目中,没有 3rd 方库或任何东西。