I have a array with photos Url in it.
How can I show this array in masonryList ??
I will retrieve the photo source from the database
images = [
{
images: {
uri:
'https://luehangs.site/pic-chat-app-images/beautiful-blond-blonde-hair-478544.jpg',
},
},
{
images: {
uri:
'https://luehangs.site/pic-chat-app-images/beautiful-blond-fishnet-stockings-48134.jpg',
},
},];
render() {
return (
<MasonryList
itemSource={['node', 'image']}
images={[
{
node: this.images.map((prop, key) => {
return this.images[prop.images];
}),
},
]}
/>
// <Text></Text>
);
} }