Status Update
Comments
se...@google.com <se...@google.com> #2
Thanks for filing this, will look into it ASAP but in the meantime, do you mind sharing some minimal code to duplicate. Is it simply using confirmValueChange in the provided sample?
er...@gmail.com <er...@gmail.com> #3
Thanks!
Yeah, you can just use the sample from here:
But use
val bottomSheetState = rememberSheetState(skipHalfExpanded = false, confirmValueChange = {false})
for the state. You can even throw an exception in the callback, because it's never called so it's never thrown.
Looking at your code for the Scrim you have this:
detectTapGestures {
onDismissRequest()
}
And that onDismissRequest()
is defined as:
onDismissRequest = {
scope.launch { sheetState.hide() }.invokeOnCompletion {
if (!sheetState.isVisible) { onDismissRequest() }
}
},
So I guess somewhere in one of those, you'd need to look at confirmValueChange
first.
se...@google.com <se...@google.com>
ap...@google.com <ap...@google.com> #4
Branch: androidx-main
commit 10e697083c409d189945cc57a19e45c3a6dc2e55
Author: José Figueroa Santos <serniebanders@google.com>
Date: Thu Feb 23 14:23:29 2023
[Material3][BottomSheet] Update scrim to confirm value change before tapping
RelNote: Add confirmValueChange check to scrim tap for ModalBottomSheet.
Test: Update confirmValueChange test to include scrim tap
Bug: 270425759
Change-Id: I2311a043ffbac63c4278fce9d0e73450fc808201
M compose/material3/material3/src/androidAndroidTest/kotlin/androidx/compose/material3/ModalBottomSheetTest.kt
M compose/material3/material3/src/commonMain/kotlin/androidx/compose/material3/ModalBottomSheet.kt
na...@google.com <na...@google.com> #6
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.material3:material3:1.1.0-alpha08
Description
Jetpack Compose component used: material3 ModalBottomSheet
The callback for the ModalBottomSheet SheetState.confirmValueChange is never called before changing state, and looking at the source it seems like it's never invoked.
This prevents disabling Scrim touch-to-dismiss