Add the following props in your ScrollView component when you want to create a snapping to center effect
Code:
<ScrollView
horizontal={true}
decelerationRate={0}
snapToInterval={200} //your element width
snapToAlignment={"center"}
/>