Skip to content

Instantly share code, notes, and snippets.

@arcadefire
Created September 12, 2021 12:50
Show Gist options
  • Star 27 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save arcadefire/7fe138c0ded1a36bee6dd57acdfa3d18 to your computer and use it in GitHub Desktop.
Save arcadefire/7fe138c0ded1a36bee6dd57acdfa3d18 to your computer and use it in GitHub Desktop.
Bottom sheet
enum class States {
EXPANDED,
COLLAPSED
}
@ExperimentalMaterialApi
@Composable
fun FullHeightBottomSheet(
header: @Composable () -> Unit,
body: @Composable () -> Unit
) {
val swipeableState = rememberSwipeableState(initialValue = States.EXPANDED)
val scrollState = rememberScrollState()
BoxWithConstraints {
val constraintsScope = this
val maxHeight = with(LocalDensity.current) {
constraintsScope.maxHeight.toPx()
}
val connection = remember {
object : NestedScrollConnection {
override fun onPreScroll(
available: Offset,
source: NestedScrollSource
): Offset {
val delta = available.y
return if (delta < 0) {
swipeableState.performDrag(delta).toOffset()
} else {
Offset.Zero
}
}
override fun onPostScroll(
consumed: Offset,
available: Offset,
source: NestedScrollSource
): Offset {
val delta = available.y
return swipeableState.performDrag(delta).toOffset()
}
override suspend fun onPreFling(available: Velocity): Velocity {
return if (available.y < 0 && scrollState.value == 0) {
swipeableState.performFling(available.y)
available
} else {
Velocity.Zero
}
}
override suspend fun onPostFling(
consumed: Velocity,
available: Velocity
): Velocity {
swipeableState.performFling(velocity = available.y)
return super.onPostFling(consumed, available)
}
private fun Float.toOffset() = Offset(0f, this)
}
}
Box(
Modifier
.swipeable(
state = swipeableState,
orientation = Orientation.Vertical,
anchors = mapOf(
0f to States.EXPANDED,
maxHeight to States.COLLAPSED,
)
)
.nestedScroll(connection)
.offset {
IntOffset(
0,
swipeableState.offset.value.roundToInt()
)
}
) {
Column(
Modifier
.fillMaxHeight()
.background(Color.White)
) {
header()
Box(
Modifier
.fillMaxWidth()
.verticalScroll(scrollState)
) {
body()
}
}
}
}
}
@Alexbeard
Copy link

What if in the bottom sheet content will be a lazylist, how we can track then a scrollState ?

@nkrebs13
Copy link

@Alexbeard This was my use case as well. I believe I solved it with relatively few modifications.

  1. I changed val scrollState = rememberScrollState() to val scrollState = rememberLazyListState().

  2. In the onPreFling I changed scrollState.value == 0 to scrollState.firstVisibleItemIndex == 0 && scrollState.firstVisibleItemScrollOffset == 0

The .value in the original implementation describes "current scroll position value in pixels" so what I have accomplishes that I think for the LazyListState implementation of ScrollableState

  1. I changed the body part of the content at the end to include a LazyColumn
LazyColumn(
    modifier = Modifier.fillMaxWidth(),
    state = scrollState
) {
    body.invoke(this)
}
  1. I changed the body type for this Composable to be body: LazyListScope.() -> Unit,

  2. Profit?

I think that's it. It seems to be working, but let it be known that I've been playing around with my implementation for all of about 8 minutes so far

@pepos
Copy link

pepos commented Mar 24, 2022

@nkrebs13 8 minutes looks enough for me, ship it!

@AxonDragonScale
Copy link

Hey Guys, Where is the toOffset() method in swipeableState.performDrag(delta).toOffset() coming from? Its not resolving for me.

@AxonDragonScale
Copy link

Oh Sorry, Got it, Didn't see the extension function created below.

@doodlez79
Copy link

Hello, How can I make it so that I can move the bottom sheet only for the area with LazyColumn?

@lucaskivi
Copy link

If you want swipeable behavior to occur only when interacting with the actual bottom sheet content Modifier.offset() should be before Modifier.swipeable().

Modifier
    .offset {
        IntOffset(
            0,
            swipeableState.offset.value.roundToInt()
        )
    }
    .swipeable(
        state = swipeableState,
        orientation = Orientation.Vertical,
        anchors = mapOf(
            0f to States.EXPANDED,
            maxHeight to States.COLLAPSED,
        )
    )
    .nestedScroll(connection)

@jeffjax
Copy link

jeffjax commented Nov 22, 2022

This looks great. One issue I've noticed though is that when the bottom sheet is expanded and you scroll the content, it doesn't use momentum scrolling.

@tausifcreates
Copy link

If you want swipeable behavior to occur only when interacting with the actual bottom sheet content Modifier.offset() should be before Modifier.swipeable().

Modifier
    .offset {
        IntOffset(
            0,
            swipeableState.offset.value.roundToInt()
        )
    }
    .swipeable(
        state = swipeableState,
        orientation = Orientation.Vertical,
        anchors = mapOf(
            0f to States.EXPANDED,
            maxHeight to States.COLLAPSED,
        )
    )
    .nestedScroll(connection)

Life Saver. Thank you!!

@LluisFelip
Copy link

This is amazing @arcadefire 🪨 ⭐ !!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment