👋 I have updated to compose 1.1.1 and together the compose.material to 1.1.1, but since then , in a button in my app there is some change on the way an OutlineButton is rendered.
so from this, it ended up as this. Anything known issue on this?
the code is quite basic
OutlinedButton(
onClick = actionClick,
enabled = enabled,
colors = buttonColors,
modifier = modifier
.border(
border = BorderStroke(
width = 1.dp,
color = if (enabled) borderColor else disabledColor
),
shape = RoundedCornerShape(4.dp),
)
) {
Text(
text = actionText.uppercase(),
textAlign = TextAlign.Center,
style = CompanyTheme.typography.body,
maxLines = 1,
modifier = Modifier.semantics {
contentDescription = actionContentDescription
}
)
}