Код: Выделить всё
ModalBottomSheet(
onDismissRequest = {
// Do not allow dismiss unless the close button has been clicked
if (previewSheetState.isVisible && isClosable) {
scope.launch {
onBottomSheetDismiss()
previewSheetState.hide()
}
}
},
sheetState = previewSheetState,
modifier = Modifier
.fillMaxSize()
){
//Content of sheet
}
Подробнее здесь: https://stackoverflow.com/questions/790 ... in-compose
Мобильная версия