Revert D5196055: [RN] Intrinsic content size for network image sources of <Image>

Differential Revision: D5196055

fbshipit-source-id: 2122029518dc6f7d1612d31b0ecfa3dd2f0dea7d
This commit is contained in:
Valentin Shergin
2017-10-25 08:04:36 -07:00
committed by Facebook Github Bot
parent efa4d3c222
commit e118d7a656
7 changed files with 11 additions and 37 deletions

View File

@@ -641,19 +641,10 @@ exports.examples = [
render: function() {
return (
<View>
<Text>Plain static image without explicitly set size</Text>
<Image
source={require('./uie_thumb_big.png')}
style={{alignSelf: 'center'}}
/>
<Text>Plain network image without explicitly set size</Text>
<Image
source={{uri: 'https://facebook.github.io/react/img/logo_og.png'}}
/>
<Image source={require('./uie_thumb_big.png')} style={{alignSelf: 'center'}} />
</View>
);
},
platform: 'ios',
},
{
title: 'MultipleSourcesExample',