marios proto
03/21/2022, 1:42 PMOutlinedButton(
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
}
)
}
f.babic
03/21/2022, 1:44 PMmarios proto
03/21/2022, 1:49 PMf.babic
03/21/2022, 2:11 PMmarios proto
03/21/2022, 2:14 PMChris Sinco [G]
03/21/2022, 5:09 PMmarios proto
03/21/2022, 7:57 PM