theapache64
clearAndSetSemantics
testTag
Box( modifier = Modifier .clearAndSetSemantics { contentDescription = "My Red Box" } .testTag("red_box") .size(100.dp) .background(Color.Green) ) { }
clearAndSet
Box( modifier = Modifier .testTag("red_box") .clearAndSetSemantics { contentDescription = "My Red Box" } .size(100.dp) .background(Color.Green) ) { }
Zach Klippenstein (he/him) [MOD]
A modern programming language that makes developers happier.