<How can I put a LazyColumn in a Swipeable composa...
# stackoverflow
r
How can I put a LazyColumn in a Swipeable composable and have it swipe when the column is at the top I'm building an Android launcher using Kotlin and Jetpack Compose, and I want to implement an app drawer similar to the Pixel Launcher. The drawer slides up using a LazyColumn to list the apps. I want the LazyColumn to allow scrolling, but if the user is at the top of the list, I want the swipe down gesture to close the drawer instead of bouncing the list. The issue I'm facing is that the LazyColumn's scroll behavior is overriding the .swipeable() modifier on the Box. When the user is at the...