How to add focus in AndroidView field

18 views Asked by At

How to add focus in AndroidView field

val focus = remember { FocusRequester() }
    AndroidView(
        modifier = Modifier.fillMaxWidth().focusRequester(focus),
        factory = { context ->
        //or any other field
            Editor(context).apply {
            }
        },
    )
0

There are 0 answers