ResponsiveImage
A responsive Image component that chooses the best-resolution image for the current screen.
Installation
yarn add @expo/react-native-responsive-image
Import it with:
Usage
ResponsiveImage accepts the same props as Image plus a new prop called sources
. The sources
prop is an object whose keys are pixel ratios (that is, screen scales like "2" or "3"). Its values are Image sources to display on screens with the respective pixel ratio. This is how you use it:
Implementation
ResponsiveImage chooses the image source for the closest pixel ratio that is greater than or equal to screen's pixel ratio. You will get a crisp image while conserving bandwidth and system resources.
As an example, if you were to provide 2x and 3x sources as in the Usage example, these are the pixel ratios that ResponsiveImage will choose for various screens:
Screen Scale | Chosen Pixel Ratio |
---|---|
1x | 2x (use lowest available) |
2x | 2x (exact match) |
2.5x | 3x (round up to nearest) |
3x | 3x (exact match) |
4x | 3x (use highest available) |