# react-native-imagegallery-as

> It's is a react-native module for creating a image gallery with and easy. You need to install react-native-vector-icons for using it.

Latest version **1.0.5** (published 2019-03-21) · ISC license · 0 weekly downloads

## Install

```sh
npm install react-native-imagegallery-as
pnpm add react-native-imagegallery-as
yarn add react-native-imagegallery-as
bun add react-native-imagegallery-as
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.5 |
| Published | 2019-03-21 |
| First published | 2019-03-19 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 7.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Alferdize simonandrew132@gmail.com |
| Maintainers | alferdize |

## Links

- npm: https://www.npmjs.com/package/react-native-imagegallery-as
- Repository: https://github.com/Alferdize/react-native-ImageGallery-as
- Homepage: https://github.com/Alferdize/react-native-ImageGallery-as#readme
- Issues: https://github.com/Alferdize/react-native-ImageGallery-as/issues
- npm.io page: https://npm.io/package/react-native-imagegallery-as

## Recent versions

- 1.0.5 (latest) — 2019-03-21
- 1.0.0 — 2019-03-19

## README

# <p align="center" style={font-size:30px;}><b>react-native-ImageGallery-as</b></p>
## Table of contents
- [react-native-image-gallery](#react-native-ImageGallery-as)
    - [Table of contents](#table-of-contents)
    - [Install](#install)
    - [Usage](#usage)
    - [Props](#props)

A Javascript image gallery for React-Native apps with common gestures like pan supporting both iOS and Android.

This component works on react-native **0.57.8+**.

## Install

`npm install --save react-native-ImageGallery-as or yarn add react-native-ImageGallery-as` 

## Usage
[1]: Add an import to the top of your file
```
import ImageGallery from 'react-native-ImageGallery-as';
```
[2]: At a minimal, declare the component in the render method prividing data for images
```
<ImageGallery
  images={[
    { uri: 'http://image1.jpg' },
    { uri: 'http://image2.jpg' },
    { uri: 'http://image3.jpg' }
  ]} title={['Image1','Image2','Image3]}
/>
```
## Props


| Prop          | Description                      | Type          | Default       |
| ------------- | ---------------------------------| ------------- | ------------- |
| `images`      | Your array of images             | `array`       | Required      |
| `title`       | Your array of title              | `array`       | `[]`      |

---
_Source: https://npm.io/package/react-native-imagegallery-as · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
