Skip to content

Instantly share code, notes, and snippets.

@MewX
Created August 7, 2019 12:39
Show Gist options
  • Save MewX/bd7ee5525c318575bae8ed9173743338 to your computer and use it in GitHub Desktop.
Save MewX/bd7ee5525c318575bae8ed9173743338 to your computer and use it in GitHub Desktop.
Flex image with full width and auto height
{/* Copied from: https://github.com/facebook/react-native/issues/950#issuecomment-380490025 */}
<View style={{flex: 1, flexDirection: 'row'}}>
<Image
resizeMode='contain'
style={{
flex: 1,
width: null,
height: null,
aspectRatio: 926/606}}
source={Images[status]} />
</View>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment