react-native-image-auto-height
v1.0.4
Published
This component provides you with an easy way to automatically set the height of the image to the provided width without using additional props
Downloads
37
Maintainers
Readme
react-native-image-auto-height
This component provides you with an easy way to automatically set the height of the image to the provided width without using additional props.
Features
- Can be used in the same way as an
Imagecomponent from react-native, no extra props - All common props of component
Imagefrom react-native are supported - Auto height setting with CSS-like styles
Install
To install the module, run the following in the command line:
npm i react-native-image-auto-height --saveUsage
import React, { Component } from 'react';
import { StyleSheet } from 'react-native';
import Image from 'react-native-image-auto-height';
export default class Demo extends Component {
render() {
return (
<>
<Image
style={styles.image}
source={require('./image.png')}
/>
<Image
style={styles.image}
source={{uri: 'http://placehold.it/350x150'}}
/>
</>
);
}
}
const styles = StyleSheet.create({
image: {
width: 150,
height: 'auto'
}
});