Tgo1014
03/03/2025, 3:24 PMModalBottomSheet
not be dismissed when clicking the scrim?Pavel Haluza
03/03/2025, 4:24 PM@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun StubbornModalBottomSheet(content: @Composable ColumnScope.() -> Unit) {
ModalBottomSheet(
onDismissRequest = { /* never called, we forbid Hidden value below */ },
sheetState = rememberModalBottomSheetState(
skipPartiallyExpanded = true,
confirmValueChange = {
// let's ignore all changes requested by dragging
it == SheetValue.Expanded
},
),
dragHandle = null,
properties = ModalBottomSheetProperties(
shouldDismissOnBackPress = false,
),
content = content,
)
}
Pavel Haluza
03/03/2025, 4:24 PMModalBottomSheetLayout
not ModalBottomSheet
🙃Tgo1014
03/03/2025, 4:25 PMTgo1014
03/03/2025, 4:25 PMTgo1014
03/03/2025, 4:25 PMTgo1014
03/03/2025, 4:25 PMTgo1014
03/03/2025, 4:25 PM