I'm trying just like another popular apps, the image thumbnail is circle and full when on click, how can I achieve this with react-native-lightbox?
this is my code snippet for now
<View style={{flex: 1}}>
<Lightbox>
<Image
resizeMode="contain"
style={styles.image}
source={{uri:uris}}
/>
</Lightbox>
</View>
I tried to applied borderRadius on style image, but it's not good enough.
Thanks