How to make `TextField` pre-focused when a Composa...
# compose
k
How to make
TextField
pre-focused when a Composable is loaded for the first time?
v
https://stackoverflow.com/questions/64181930/request-focus-on-textfield-in-jetpack-compose?rq=1 Correct in Row as following:
Copy code
Row(
            modifier = Modifier.onFocusChanged { focusState.value = it }
        ) {...
👍 1