Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Attachment actions
Unintended behavior
View staffing
Description
Jetpack Compose version: 2025.01.00(BOM)
Jetpack Compose component(s) used: rememberNestedScrollInteropConnection
Android Studio Build:Android Studio Ladybug 2024.2.2
Kotlin version: 2.1.0
I want to incrementally apply Compose to an existing app. I tried to use Compose inside a BottomSheetDialogFragment.
When using BottomSheetDialogFragment with Compose, even small flings cause the BottomSheet to close.
When scrolling ends, the onStopNestedScroll method of the BottomSheetBehavior is called by the rememberNestedScrollInteropConnection() set in the Composable.
I would like to see this modified to take into account the significantVelocityThreshold to control the state of the BottomSheet at this time.
Steps to Reproduce or Code Sample to Reproduce:
set up BottomSheetBehavior
Compose + BottomSheetDialogFragment
Sample project repo :https://github.com/ddaeyeonkim/BottomSheetSample