diff --git a/src/picker/PickerColumn.js b/src/picker/PickerColumn.js index 62f9490af..d966f2c21 100644 --- a/src/picker/PickerColumn.js +++ b/src/picker/PickerColumn.js @@ -236,7 +236,7 @@ export default createComponent({ momentum(distance, duration) { const speed = Math.abs(distance / duration); - distance = this.offset + (speed / 0.002) * (distance < 0 ? -1 : 1); + distance = this.offset + (speed / 0.003) * (distance < 0 ? -1 : 1); const index = this.getIndexByOffset(distance);