Is it possible to make TextField focusable on nonf...
# compose
p
Is it possible to make TextField focusable on nonfocusable Popup? Now for such case when clicked on TextField it is marked as focused, but there is nothing happening (TextField remains empty ) when pressing keyboard buttons.
no red 1
Copy code
Popup(
        properties = PopupProperties(
            focusable = false
        )
    ) {
        var s by remember { mutableStateOf("") }
        OutlinedTextField( // when click it start shown as focused but keyboard is not working
            value = s,
            onValueChange = {
                s = it
            }
        )
    }
s
Why do you need the popup to not be focusable?
p
I need to scroll background element (under popup). With nonfocusable popup it is possible, but then the issue with TextField appeared.
👍 1