Hristijan
06/03/2025, 9:35 AMmodifier = Modifier
.semantics { contentType = ContentType.Password }
and
Modifier.semantics { contentType = ContentType.Username + ContentType.EmailAddress }
works fine over hereRok Oblak
06/03/2025, 11:29 AMsindrenm
06/03/2025, 2:25 PMTextField
(or BasicTextField
or whatever you may use). It does not work with the following:
Column {
Text("Username")
TextField(state, Modifier.semantics {})
}
In case that's what you're trying.Colton Idle
06/04/2025, 2:46 PMVivek Modi
06/04/2025, 2:54 PMHristijan
06/04/2025, 3:05 PM