We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 714b86b commit 3bbac16Copy full SHA for 3bbac16
compose/snippets/src/main/java/com/example/compose/snippets/layouts/MaterialLayoutSnippets.kt
@@ -14,7 +14,7 @@
14
* limitations under the License.
15
*/
16
17
-package com.example.compose.snippets.layout
+package com.example.compose.snippets.layouts
18
19
import androidx.compose.foundation.layout.Box
20
import androidx.compose.foundation.layout.PaddingValues
@@ -396,7 +396,9 @@ fun BottomSheetDemo() {
396
397
if (showBottomSheet) {
398
ModalBottomSheet(
399
- onDismissRequest = { /* Executed when the sheet is dismissed */ },
+ onDismissRequest = {
400
+ showBottomSheet = false
401
+ },
402
sheetState = sheetState
403
) {
404
// Sheet content
0 commit comments