-1
スケールイメージはHTMLのようです。反応性ネイティブのimg {height:100%; width:100%}
。React Nativeの縮尺イメージ
私はresizeMode?: enum('cover', 'contain', 'stretch', 'repeat', 'center')
を試しましたが、私の場合は動作しません。
<View style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center',
paddingTop: Constants.statusBarHeight,
backgroundColor: '#ecf0f1',
flexDirection:'row'
}}>
<View style={{flex:1, backgroundColor:'yellow'}}>
<Image
style={{width: 50, height: 50}}
resizeMode="stretch"
source={{uri: 'http://aristotlebuzz.com/wp-content/uploads/2017/01/Facebook.png'}}
/>
</View>
<View style={{flex:1, backgroundColor:"red"}}>
<Text>afdafda</Text>
</View>
</View>
https://snack.expo.io/ByhjFQo1M
はhttps://www.npmjs.com/package/react-([反応-ネイティブスケーラブル-画像]を見てくださいネイティブスケーラブルイメージ) –