Thomas Dougherty
03/23/2022, 9:21 PMConstraintLayout(
constraintSet = constraints,
modifier = Modifier
.fillMaxWidth()
.height(90.dp)
.clearAndSetSemantics {
set(SemanticsProperties.ContentDescription, listOf(contentDescriptionText))
}
.clickable(onClick = onClick)
.border(
width = 6.dp,
color = Color.Green,
shape = RoundedCornerShape(topStart = 6.dp, topEnd = 6.dp, bottomEnd = 6.dp, bottomStart = 6.dp)
)
) {
Thomas Dougherty
03/23/2022, 9:28 PM