Rajashekar
02/21/2022, 4:30 PMval bottomSheetScaffoldState = rememberBottomSheetScaffoldState(
bottomSheetState = rememberBottomSheetState(
initialValue = BottomSheetValue.Expanded,
animationSpec = tween(durationMillis = 500, delayMillis = 100),
)
)
Surface(
color = MaterialTheme.colors.primary
) {
BottomSheetScaffold(
sheetShape = RectangleShape,
backgroundColor = MaterialTheme.colors.primary,
bottomSheetScaffoldState = bottomSheetScaffoldState,
sheetPeekHeight = 0.dp,
sheetGesturesEnabled = false,
sheetContent = { DialPadContent(viewModel, scaffoldState) },
) {
// Screen content
}
}
jossiwolf
02/21/2022, 7:43 PMjossiwolf
02/21/2022, 7:46 PMSorry for the delays. I don't think we will be able to provide a solid fix for this soon. Given that it is experimental, I'd rather not hot-fix this, but invest some time in the proper redesign of the swipeableHoping to get something done on this soon-ish, but the ugly workaround might be your best option for now 😞
Rajashekar
02/21/2022, 8:07 PM