Description:
A React Native utility library for building image galleries. It’s very simple to use and is designed with performance in mind.
How to use it:
1. Install and import the gallery component.
# NPM $ npm i @paraboly/react-native-gallery
import ImageGallery from "@paraboly/react-native-gallery";
2. Add the ImageGallery component to the app and define your image list.
<ImageGallery
data={galleryData}
loadingSource={require("loading.gif")}
onPress={(itemIndex: number) => console.log("Item Index: ", itemIndex)}
/>// gallery data
[
{
"source": {
"uri": "1.jpg"
}
},
{
"source": {
"uri": "2.jpg"
}
},
{
"source": {
"uri": "3.jpg"
}
},
// ...
]