Is there something special in AlertDialogs and foc...
# compose
t
Is there something special in AlertDialogs and focus/keyboard?
Copy code
LaunchedEffect(Unit) {
	focusRequester.requestFocus()
	keyboardController?.show()
}
Does not work I need to add a delay before the show() but this feels hacky and random value 😞
z
There's an existing bug for this
t
Found it thanks, was using the wrong search terms the first time. I'll keep the delay until fixed so.
j