See if this fixes focus bug with auto complete tags

This commit is contained in:
Jobobby04 2023-05-09 21:53:49 -04:00
parent 2ed07181b5
commit 8d83384fb7

View File

@ -138,7 +138,10 @@ fun AutoCompleteTextField(
) {
OutlinedTextField(
value = value,
onValueChange = { value = it },
onValueChange = {
value = it
expanded = true // todo remove if focus bug is fixed
},
label = if (label != null) {
{ Text(label) }
} else {