commandiron / WheelPickerCompose

Add Wheel Date - Time Picker in Android Jetpack Compose.
Apache License 2.0
444 stars 54 forks source link

Bounces back when it fling or drag to the bottom #51

Open EchoDongYu opened 2 months ago

EchoDongYu commented 2 months ago

There is something wrong with the flingBehavior when use in Dialog or ModalBottomSheet,It will bounces back when it fling or drag to the bottom 动画

EchoDongYu commented 2 months ago

问题在于 onScrollFinished 中的 snappedIndex 可能会越界,如下替换可解决问题

  val newDayOfMonth =
      if (snappedIndex >= dayOfMonths.size) dayOfMonths.last().value
      else dayOfMonths.find { it.index == snappedIndex }?.value