What kind of effect does password semantic have on...
# compose
p
What kind of effect does password semantic have on behavior? I can't seem to find any documentation about that.
Copy code
modifier = Modifier.semantics {
    password()
},
z
I believe it’s onlt a flag that is left up the the a11y system to interpret. Eg talkback might treat password fields specially. It doesn't have any direct effect on their own behavior.
BasicSecureTextField
publishes this property, but implements all the other special password field behavior itself.
👍 1