
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
react-native-flex-image
Advanced tools
A flexible-width component for React Native using
aspectRatio
Note: Only for React Native version >= 0.40.0
$ yarn add react-native-flex-image
-- or --
$ npm install react-native-flex-image --save
Use <FlexImage> to display an image sized to the full-width of its parent while maintaining the correct ratio, without explicitly defining the width and height. FlexImage supports local images (asset) and remote images (uri).
Also supports loading indicator for remote images.
Expo demo: https://exp.host/@kfox/react-native-flex-image
import FlexImage from 'react-native-flex-image';
function App() {
return (
<View style={{flex: 1}}>
<FlexImage
source={{
uri: 'image source uri',
}}
/>
</View>
);
}
import FlexImage from 'react-native-flex-image';
function App() {
return (
<View style={{flex: 1}}>
<FlexImage source={require('./assets/react-logo.png')} />
</View>
);
}
import FlexImage from 'react-native-flex-image';
function App() {
return (
<View style={{flex: 1}}>
<FlexImage
source={{
uri: 'https://example.com/path/to/my/image',
}}
onPress={() => {
let {imageClickCount} = this.state;
this.setState({
imageClickCount: imageClickCount + 1,
});
}}
/>
</View>
);
}
import FlexImage from 'react-native-flex-image';
function App() {
return (
<View style={{flex: 1}}>
<FlexImage
source={{
uri: 'image source uri',
}}
loadingComponent={<ActivityIndicator size="large" color="red" />}
/>
</View>
);
}
import FlexImage from 'react-native-flex-image';
function App() {
return (
<View style={{flex: 1}}>
<FlexImage
source={{
uri: 'image source uri',
}}
thumbnail={{uri: 'thumbnail image source uri'}}
loadingMethod="progressive"
/>
</View>
);
}
Note: Other properties will be passed down to underlying image component.
| Prop | Type | Description | Default |
|---|---|---|---|
source | required | source of the image | None |
onPress | optional | onPress event when user clicking the image | null |
style | optional | custom style for the image container | null |
loadingComponent | optional | custom loading indicator when render the image | <ActivityIndicator animating={true} size="large" /> |
thumbnail | optional | source of the thumbnail | None |
loadingMethod | optional | enum for select loading method, using indicator or progressive | indicator |
errorComponent | optional | custom error component when fail displaying the image | null |
MIT License. ©2017 - current, KodeFox, Inc.
FAQs
A flexible-width component for React Native using `aspectRatio`
We found that react-native-flex-image demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.