react-native-image-gallery-refis360movil
v1.2.3
Published
A React Native image gallery browser with interactive animations
Downloads
31
Maintainers
Readme
@nlabs/react-native-image-gallery
A React Native component to display a gallery of images.
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} />;
}
}