feat: use OutlinedButton instead of AssistChip

This commit is contained in:
Ushie 2022-10-10 19:35:07 +03:00
parent ebe238caaa
commit a63ca61905
No known key found for this signature in database
GPG Key ID: 0EF73F1CA38B2D5F

View File

@ -58,7 +58,9 @@ fun ExpandableCard(
contentDescription = stringResource(R.string.expand)
)
}
AssistChip(onClick = { /*TODO*/ }, label = {Text("Update")}, shape = CircleShape)
OutlinedButton(onClick = { /*TODO*/ }, shape = CircleShape) {
Text("Update")
}
}
if (expandedState) {
Box(modifier = Modifier.padding(bottom = 16.dp)) {