Skip to content

nitrogenlabs/react-native-image-gallery

Repository files navigation

@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

iOS Android

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages