Hello, using KMP Compose 1.8.2 I am having an issu...
# compose-ios
t
Hello, using KMP Compose 1.8.2 I am having an issue with text fields. When I tap on a text field I get this error
Copy code
Can't show file for stack frame : <DBGLLDBStackFrame: 0x149e1ea90> - stackNumber:0 - name:kfun:kotlin.coroutines.Continuation#<get-context>(){}kotlin.coroutines.CoroutineContext-trampoline. The file path does not exist on the file system: /opt/buildAgent/work/2d153abd4d2c0600/kotlin/libraries/stdlib/src/kotlin/coroutines/Continuation.kt
And the text field I am using
Copy code
var textFieldValue by remember {
    mutableStateOf("")
}
                
OutlinedTextField(
    value = textFieldValue,
    onValueChange = { textFieldValue = it },
    singleLine = true,
    modifier = Modifier.width(160.dp)
)
And my imports
Copy code
implementation(compose.runtime)
            implementation(compose.foundation)
            implementation(compose.material3)
            implementation(compose.ui)
            implementation(compose.components.resources)
            implementation(compose.components.uiToolingPreview)
Do you think I am missing something? Other UI elements work fine (buttons and checkboxes)