Joost Klitsie
08/12/2020, 10:00 AMOutlinedTextField(
value = viewState.userName ?: "",
onValueChange = viewModel::updateUserName,
modifier = Modifier.fillMaxWidth(),
label = { Text("User name") }
)
If I check the onValueChange callback, it is actually returning the wrong texts already (so I do not blame my own code behind it)
It does look like it has to do with the autocomplete functionality
on my other device with Android 8 it works fineJoost Klitsie
08/12/2020, 10:03 AMZach Klippenstein (he/him) [MOD]
08/12/2020, 1:36 PMJoost Klitsie
08/12/2020, 2:15 PM