Hi I am trying to achieve scrollview
snap to center
like below gif
link
Check This Gif
But unable to do so. Following is my react nat
You don't need other libraries you can do that with ScrollView. All you need is to add the following props in your component.
horizontal= {true}
decelerationRate={0}
snapToInterval={200} //your element width
snapToAlignment={"center"}
Check this snack for more details on how to implement it https://snack.expo.io/H1CnjIeDb