https://github.com/user-attachments/assets/51d80d51-4c4c-4743-96bc-6248b994d726 Also reproducing on my physical iOS 18.6.2 device ## Environment ``` kotlin = 2.3.0 compose-multiplatform = 1.10.0 calf = 0.9.0 ``` ## Sample code ```kotlin @OptIn(ExperimentalMaterial3Api::class) @Composable fun TestSheet( onDismissRequest: () -> Unit ) { AdaptiveBottomSheet( adaptiveSheetState = rememberAdaptiveSheetState(skipPartiallyExpanded = true), dragHandle = null, onDismissRequest = onDismissRequest ) { LazyColumn( modifier = Modifier.fillMaxSize() ) { items(100) { Text( modifier = Modifier .fillMaxWidth() .padding(16.dp), text = "${it.inc()}" ) } } } } ```
Screen.Recording.2026-02-28.at.1.21.45.AM.mov
Also reproducing on my physical iOS 18.6.2 device
Environment
Sample code