2019-11-28 14:03:46 +00:00
|
|
|
# react-native-image-viewing
|
|
|
|
|
2019-11-28 17:30:28 +00:00
|
|
|
> React Native modal component for viewing images as a sliding gallery.
|
|
|
|
|
2019-11-28 14:03:46 +00:00
|
|
|
[![npm version](https://badge.fury.io/js/react-native-image-viewing.svg)](https://badge.fury.io/js/react-native-image-viewing)
|
|
|
|
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
|
|
|
|
|
2019-12-27 14:10:59 +00:00
|
|
|
- 🔥Pinch zoom for both iOS and Android
|
2020-02-03 18:11:20 +00:00
|
|
|
- 🔥Double tap to zoom for both iOS and Android
|
2019-11-28 17:30:28 +00:00
|
|
|
- 🔥Supports swipe-to-close animation
|
|
|
|
- 🔥Custom header and footer components
|
2019-11-29 10:30:37 +00:00
|
|
|
- 🔥Uses VirtualizedList to optimize image loading and rendering
|
2019-11-28 17:30:28 +00:00
|
|
|
|
2019-11-28 14:03:46 +00:00
|
|
|
Try with Expo: https://expo.io/@antonkalinin/react-native-image-viewing
|
|
|
|
|
|
|
|
<p align="center">
|
|
|
|
<img src="https://github.com/jobtoday/react-native-image-viewing/blob/master/demo.gif?raw=true" height="480" />
|
|
|
|
</p>
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
```bash
|
|
|
|
yarn add react-native-image-viewing
|
|
|
|
```
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
```bash
|
|
|
|
npm install --save react-native-image-viewing
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import ImageView from "react-native-image-viewing";
|
|
|
|
|
|
|
|
const images = [
|
|
|
|
{
|
2020-05-01 13:04:10 +00:00
|
|
|
uri: "https://images.unsplash.com/photo-1571501679680-de32f1e7aad4",
|
2019-11-28 14:03:46 +00:00
|
|
|
},
|
|
|
|
{
|
2020-05-01 13:04:10 +00:00
|
|
|
uri: "https://images.unsplash.com/photo-1573273787173-0eb81a833b34",
|
2019-11-28 14:03:46 +00:00
|
|
|
},
|
|
|
|
{
|
2020-05-01 13:04:10 +00:00
|
|
|
uri: "https://images.unsplash.com/photo-1569569970363-df7b6160d111",
|
|
|
|
},
|
2019-11-28 14:03:46 +00:00
|
|
|
];
|
|
|
|
|
2019-11-29 10:30:37 +00:00
|
|
|
const [visible, setIsVisible] = useState(false);
|
2019-11-28 14:03:46 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
images={images}
|
|
|
|
imageIndex={0}
|
2019-11-29 10:30:37 +00:00
|
|
|
visible={visible}
|
2019-11-28 14:03:46 +00:00
|
|
|
onRequestClose={() => setIsVisible(false)}
|
2020-09-17 12:21:58 +00:00
|
|
|
/>
|
2019-11-28 14:03:46 +00:00
|
|
|
```
|
|
|
|
|
2019-11-29 12:55:51 +00:00
|
|
|
#### [See Example](https://github.com/jobtoday/react-native-image-viewing/blob/master/example/App.tsx#L62-L80)
|
2019-11-28 14:03:46 +00:00
|
|
|
|
|
|
|
## Props
|
|
|
|
|
2020-05-21 20:51:02 +00:00
|
|
|
| Prop name | Description | Type | Required |
|
|
|
|
| ------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------- | -------- |
|
|
|
|
| `images` | Array of images to display | ImageSource[] | true |
|
2021-09-04 17:04:34 +00:00
|
|
|
| `keyExtractor` | Uniqely identifying each image | (imageSrc: ImageSource, index: number) => string | false |
|
2020-05-21 20:51:02 +00:00
|
|
|
| `imageIndex` | Current index of image to display | number | true |
|
|
|
|
| `visible` | Is modal shown or not | boolean | true |
|
|
|
|
| `onRequestClose` | Function called to close the modal | function | true |
|
|
|
|
| `onImageIndexChange` | Function called when image index has been changed | function | false |
|
2020-05-03 20:37:55 +00:00
|
|
|
| `onLongPress` | Function called when image long pressed | function (event: GestureResponderEvent, image: ImageSource) | false |
|
2020-05-21 20:51:02 +00:00
|
|
|
| `delayLongPress` | Delay in ms, before onLongPress is called: default `800` | number | false |
|
|
|
|
| `animationType` | Animation modal presented with: default `fade` | `none`, `fade`, `slide` | false |
|
|
|
|
| `presentationStyle` | Modal presentation style: default: `fullScreen` **Android:** Use `overFullScreen` to hide StatusBar | `fullScreen`, `pageSheet`, `formSheet`, `overFullScreen` | false |
|
|
|
|
| `backgroundColor` | Background color of the modal in HEX (#000000EE) | string | false |
|
|
|
|
| `swipeToCloseEnabled` | Close modal with swipe up or down: default `true` | boolean | false |
|
|
|
|
| `doubleTapToZoomEnabled` | Zoom image by double tap on it: default `true` | boolean | false |
|
|
|
|
| `HeaderComponent` | Header component, gets current `imageIndex` as a prop | component, function | false |
|
|
|
|
| `FooterComponent` | Footer component, gets current `imageIndex` as a prop | component, function | false |
|
|
|
|
|
|
|
|
- type ImageSource = ImageURISource | ImageRequireSource
|
2019-11-28 14:03:46 +00:00
|
|
|
|
|
|
|
## Contributing
|
|
|
|
|
|
|
|
To start contributing clone this repo and then run inside `react-native-image-viewing` folder:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
yarn
|
|
|
|
```
|
|
|
|
|
|
|
|
Then go inside `example` folder and run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
yarn & yarn start
|
|
|
|
```
|
|
|
|
|
|
|
|
This will start packager for expo so you can change `/src/ImageViewing` and see changes in expo example app.
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
[MIT](LICENSE)
|