AnchorBottomSheetScaffold

fun AnchorBottomSheetScaffold(    sheetContent: @Composable ColumnScope.() -> Unit,     modifier: Modifier = Modifier,     sheetState: BottomSheetState = rememberBottomSheetState(),     sheetGesturesEnabled: Boolean = true,     sheetShape: Shape = RectangleShape,     sheetElevation: Dp = 0.dp,     sheetBackgroundColor: Color = Color.Transparent,     sheetPeekHeight: Dp,     sheetHalfExpandedHeight: (Dp) -> Dp? = null)

Unlike BottomSheetScaffold this composable supports BottomSheetValue.HalfExpanded state and does not block touch propagation to the views behind it.