A React Native image gallery browser with interactive animations
npm install react-native-image-gallery-refis360movil
bash
$ npm install --save @nlabs/react-native-image-gallery
`
or
`bash
$ yarn add @nlabs/react-native-image-gallery
`
$3
`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 ;
}
}
``