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
PHondogo
12/17/2024, 8:48 PM
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
Stylianos Gakis
12/17/2024, 9:08 PM
Why do you need the popup to not be focusable?
p
PHondogo
12/17/2024, 9:47 PM
I need to scroll background element (under popup). With nonfocusable popup it is possible, but then the issue with TextField appeared.