machadogj / react-native-carousel-control

React Native Carousel control with support for iOS and Android
MIT License
247 stars 55 forks source link

Allows to swipe more than one page #28

Closed dmitrydyomin closed 7 years ago

dmitrydyomin commented 7 years ago

This commit allows to swipe more than one page at time. It's useful when more than three items are visible at a time. Looks like it shouldn't brake anything. There's the following relation between swiped and pagesSwiped (for threshold = .5):

swiped pagesSwiped
.4 0
.6 1
1.4 1
1.6 2
-.4 0
-.6 -1
machadogj commented 7 years ago

Hi @dmitrydyomin looks good to me! Thanks 👍

machadogj commented 7 years ago

This was published in v1.1.2!

dmitrydyomin commented 7 years ago

Thanks!