1.2.2 • Published 5 months ago

react-native-image-gallery-refis360movil v1.2.2

Weekly downloads
38
License
MIT
Repository
github
Last release
5 months ago

@nlabs/react-native-image-gallery

A React Native component to display a gallery of images.

npm version Travis npm downloads TypeScript Issues Gitter MIT license

Preview

Installation

Using npm:

$ npm install --save @nlabs/react-native-image-gallery

or

$ yarn add @nlabs/react-native-image-gallery

Usage

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} />;
  }
}
1.2.2

5 months ago

1.2.1

5 months ago

1.1.7

2 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago