cah
01/17/2024, 12:30 AManimateContentSize()
causes the item to clip when increasing in size but not when decreasing..
Is this a mistake on my part?Albert Chang
01/17/2024, 4:09 AManimateContentSize()
to the content of the chip instead of the chip itself.Zoltan Demant
01/17/2024, 5:33 AMAlbert Chang
01/17/2024, 5:55 AMInputChip(
selected = false,
onClick = {},
label = {
Text(
text = text,
modifier = Modifier.animateContentSize()
)
}
)
instead of
InputChip(
selected = false,
onClick = {},
label = { Text(text = text) },
modifier = Modifier.animateContentSize()
)
Zoltan Demant
01/17/2024, 5:59 AMAlbert Chang
01/17/2024, 6:08 AMZoltan Demant
01/17/2024, 6:18 AMAlbert Chang
01/17/2024, 6:25 AMZoltan Demant
01/17/2024, 6:29 AMAlbert Chang
01/17/2024, 6:33 AMZoltan Demant
01/17/2024, 6:45 AMcah
01/17/2024, 10:37 AM