Nate Massey
Nate Massey
# Overview This improves swipe behavior for my full-screen carousel use case. If a user pans very slowly and ultimately not very far, we would prefer that they stay on...
# What: the bug When `onGestureUpdate` is called, it may be using the _previous_ value for `panOffset` (rather than the value just set in `onGestureStart`). This seems to cause a...
# What: the bug When `endWithSpring` is called, it is using the _previous_ values for `scrollEndVelocity` and `scrollEndTranslation` (rather than the values just set in `onGestureEnd`). This seems to cause...
# What: the bug The `onStart`, `onUpdate`, and `onEnd` gesture handlers are not being automatically workletized. This causes these handlers to run on the JS thread instead of the UI...
# What: the bug On iOS, when running in "Release" configuration (i.e. not "development" configuration), if `onProgressChange` is a function, **the app crashes**. 😖 On Android, similar **crash**. Thanks to...