I'm using sectionList with pressable items. It may like this:
<SectionList
data={list}
renderItem={(item) => {
return <Pressable android_ripple={{ color: gray, borderless: true }} />
}}
/>
The ripple give a simple way to realize user effect after press, but I find it will trigger when scroll. That's quite not pretty. Is there any way to avoid it?