Hi,
Thank you for a very good package.
I'm trying to create a custom render item with image and buttons but button onPress events are not triggering. Is it somehow possible? I did try TouchableWithoutFeedback.
<SmartGallery
index={index}
images={images}
style={styles.container}
onEndReached={loadMore}
renderItem={(imageProps) => (
<View>
<Image source={blabla} />
<TouchableOpacity
onPress={() => console.log('pressed')}
>
<Text>Button</Text>
</TouchableOpacity>
</View>
)}
loadMinimal
loadMinimalSize={2}
sensitiveScroll={false}
/>
Hi,
Thank you for a very good package.
I'm trying to create a custom render item with image and buttons but button onPress events are not triggering. Is it somehow possible? I did try TouchableWithoutFeedback.