Horizontal scrollview snapping react native
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