I have a flatlist.
<FlatList
horizontal
data={data}
key={(item, index) => index.toString()}
ListHeaderComponent={listHeader}
renderItem={ // rendering some component }
/>
I want to make this flat list auto-scroll like a marquee text. I mean it should scroll slowly automatically till it reaches to end and again it should start from the beginning like a carousel.