xrubioj / JetpackComposeOverlayTest

MIT License
6 stars 0 forks source link

TextField support #1

Open tkkcc opened 1 month ago

tkkcc commented 1 month ago

Hi, i wonder if we cloud use TextField in overlay, i tried but keyboard input fail, also tried add WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM but no help.

var text by remember {
    mutableStateOf("aaa")
}
TextField(text, {
    text=it
})
tkkcc commented 1 month ago

solved, it's worked with FLAG_NOT_TOUCH_MODAL alone