Hi does someone know how to use TextField with inp...
# compose
l
Hi does someone know how to use TextField with inputType of
Password
? This is showing the text still plain:
Copy code
TextField(
    value = textState,
    modifier = Modifier.fillMaxWidth(),
    onValueChange = onChange,
    keyboardType = KeyboardType.Password
)
a
visualTransformation = PasswordVisualTransformation()
should be used and it is available in TextField already. In FilledTextField it will be available in dev11.