Current behavior:
So there is no way to do it right now. If nobody knows the answer.
https://stackoverflow.com/questions/52525212/kitten-ui-network-gallery
Hi @ugurozturk ,
Looks like you already have this ability :)
If you look through sources, you should see, that RkGallery items are RkGalleryImage.
When you pass array of items to RkGallery, it translates it one-by-one into each RkGalleryImage through the source prop. This prop works the same way as it does plain react-native Image component.
So you can use it like this:
<RkGallery items={[
{uri: 'https://path-to/my-awesome-pic-0.jpg'},
{uri: 'https://path-to/my-awesome-pic-1.jpg'},
]} />
Thank you :)

You might want to look into it @artyorsh
@ugurozturk
No need in use React components as array items. Just [{ uri: 'https://...' }, ... ], as I described above