You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue:
When using WheelTimePicker inside a scrollable component like a BottomSheet in Jetpack Compose, scrolling on the picker also scrolls the parent (e.g., the BottomSheet). This makes it hard for users to select time smoothly without the bottom sheet moving.
Expected Behavior:
The scroll gestures on the WheelTimePicker should be handled only by the picker, and the parent container (like the BottomSheet) should not move.
Actual Behavior:
When trying to scroll on the WheelTimePicker, the parent component (like the BottomSheet or any scrollable container) also moves, which interrupts the time selection process.
Steps to Reproduce:
Add a WheelTimePicker inside a BottomSheet.
Scroll the picker to change the time.
Notice that the BottomSheet moves along with the picker.
Environment:
WheelPickerCompose Version [1.1.11]
Expected Solution:
The WheelTimePicker should block its scroll events from affecting any parent scrollable components, allowing users to scroll only within the picker without moving other parts of the UI.
This issue disrupts the user experience when using the WheelTimePicker in any scrollable container and needs to be addressed.
The text was updated successfully, but these errors were encountered:
Description:
Issue:
When using
WheelTimePicker
inside a scrollable component like aBottomSheet
in Jetpack Compose, scrolling on the picker also scrolls the parent (e.g., theBottomSheet
). This makes it hard for users to select time smoothly without the bottom sheet moving.Expected Behavior:
The scroll gestures on the
WheelTimePicker
should be handled only by the picker, and the parent container (like theBottomSheet
) should not move.Actual Behavior:
When trying to scroll on the
WheelTimePicker
, the parent component (like theBottomSheet
or any scrollable container) also moves, which interrupts the time selection process.Steps to Reproduce:
WheelTimePicker
inside aBottomSheet
.BottomSheet
moves along with the picker.Environment:
Expected Solution:
The
WheelTimePicker
should block its scroll events from affecting any parent scrollable components, allowing users to scroll only within the picker without moving other parts of the UI.This issue disrupts the user experience when using the
WheelTimePicker
in any scrollable container and needs to be addressed.The text was updated successfully, but these errors were encountered: