Marek Hlava
07/08/2021, 12:15 PMButton(
modifier = Modifier.semantics {
contentDescription = "my-button"
},
onClick = {},
) {
Text("Click me")
}
What works is moving the modifier to the Text instead but I can't find this behavior change mentioned in release notes.
Update: cannot put contentDescription on TextFields either.Zach Klippenstein (he/him) [MOD]
07/08/2021, 3:08 PMMarek Hlava
07/09/2021, 7:48 AMMarek Hlava
07/09/2021, 8:17 AM