Is it possible to request focus on a TextField aft...
# compose
y
Is it possible to request focus on a TextField after opening a composable screen using Compose navigation? I want the keyboard to automatically open and focus on the TextField instead of the user having to tap on the TextField
c
This sounds very possible even if it needs to come with a hack
y
It should be possible but I couldnt find anything for such a thing online so I thought I should ask here.
1
I can’t see you following up with your answer from this
d
Copy code
LaunchedEffect(true) {

    focusRequester.requestFocus()

    }
This is not ideal though. The focus should probably be placed after the screen is fully visible.