Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 409 Bytes

horizontal-scrollview-snapping.md

File metadata and controls

13 lines (11 loc) · 409 Bytes

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"}
/>

source: Horizontal scrollview snapping react native