# react-native-image-gallery-refis360movil

> A React Native image gallery browser with interactive animations

Latest version **1.2.10** (published 2026-09-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-native-image-gallery-refis360movil
pnpm add react-native-image-gallery-refis360movil
yarn add react-native-image-gallery-refis360movil
bun add react-native-image-gallery-refis360movil
```

## Health

**Score 65/100 (B)** — status: active.

Positive: has types; no vulnerabilities; recently updated; high maintenance score; high quality score.

Warnings: low downloads; no esm support.

## Facts

| | |
|---|---|
| Version | 1.2.10 |
| Published | 2026-09-02 |
| First published | 2020-04-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 113.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 24 |
| Author | Alvaro Medina Ballester |
| Maintainers | clj_desarrollo |
| Keywords | gallery, image, nitrogenlabs, react-native |

## Links

- npm: https://www.npmjs.com/package/react-native-image-gallery-refis360movil
- Repository: https://github.com/nitrogenlabs/react-native-image-gallery
- Homepage: http://nitrogenlabs.com
- Issues: https://github.com/nitrogenlabs/react-native-image-gallery/issues
- npm.io page: https://npm.io/package/react-native-image-gallery-refis360movil

## Alternatives

- [exif-parser](https://npm.io/package/exif-parser.md) — 3.8M weekly downloads
- [vite-plugin-compression](https://npm.io/package/vite-plugin-compression.md) — 569.5K weekly downloads
- [pica](https://npm.io/package/pica.md) — 442.4K weekly downloads
- [@reportportal/client-javascript](https://npm.io/package/@reportportal/client-javascript.md) — 408.8K weekly downloads
- [@tldraw/state](https://npm.io/package/@tldraw/state.md) — 316.0K weekly downloads

## Recent versions

- 1.2.10 (latest) — 2026-09-02
- 1.2.9 — 2026-06-16
- 1.2.8 — 2026-06-16
- 1.2.7 — 2025-03-25
- 1.2.6 — 2025-03-22
- 1.2.5 — 2025-03-22
- 1.2.4 — 2025-03-14
- 1.2.3 — 2024-09-30
- 1.2.2 — 2023-12-08
- 1.2.1 — 2023-12-07
- 1.1.7 — 2022-03-28
- 1.1.6 — 2021-06-28
- 1.1.5 — 2021-02-18
- 1.1.4 — 2020-12-17
- 1.1.3 — 2020-04-30
- … 3 more at https://npm.io/package/react-native-image-gallery-refis360movil/versions

## README

# @nlabs/react-native-image-gallery

A React Native component to display a gallery of images.

[![npm version](https://img.shields.io/npm/v/arkhamjs.svg?style=flat-square)](https://www.npmjs.com/package/arkhamjs)
[![Travis](https://img.shields.io/travis/nitrogenlabs/arkhamjs.svg?style=flat-square)](https://travis-ci.org/nitrogenlabs/arkhamjs)
[![npm downloads](https://img.shields.io/npm/dm/arkhamjs.svg?style=flat-square)](https://www.npmjs.com/package/arkhamjs)
[![TypeScript](https://badges.frapsoft.com/typescript/version/typescript-next.svg?v=101)](https://github.com/ellerbrock/typescript-badges/)
[![Issues](http://img.shields.io/github/issues/nitrogenlabs/arkhamjs.svg?style=flat-square)](https://github.com/nitrogenlabs/arkhamjs/issues)
[![Gitter](https://img.shields.io/gitter/room/NitrgenLabs/arkhamjs.svg?style=flat-square)](https://gitter.im/NitrogenLabs/arkhamjs)
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](http://opensource.org/licenses/MIT)

### Preview

<p align="center">
<img src="https://raw.githubusercontent.com/wiki/InterfaceKit/react-native-interactive-image-gallery/ios.gif" alt="iOS" width="300" />
<img src="https://raw.githubusercontent.com/wiki/InterfaceKit/react-native-interactive-image-gallery/android.gif" alt="Android" width="300" />
</p>

### Installation

Using [npm](https://www.npmjs.com/):
```bash
$ npm install --save @nlabs/react-native-image-gallery
```
or
```bash
$ yarn add @nlabs/react-native-image-gallery
```

### Usage

```javascript
import {ImageGallery} from '@nlabs/react-native-image-gallery';

class Images extends React.PureComponent {
  render() {
    const {images} = this.props;
    const imageUrls = images.map((img) => ({
        url: img.uri,
        id: img.id,
        title: img.title,
        description: img.description
      })
    );
    return <ImageGallery images={imageUrls} />;
  }
}
```

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