Lilly
05/11/2020, 9:17 PMPassword
? This is showing the text still plain:
TextField(
value = textState,
modifier = Modifier.fillMaxWidth(),
onValueChange = onChange,
keyboardType = KeyboardType.Password
)
Anastasia [G]
05/11/2020, 9:38 PMvisualTransformation = PasswordVisualTransformation()
should be used and it is available in TextField already. In FilledTextField it will be available in dev11.Vinay Gaba
05/11/2020, 10:21 PM