当某个布尔变量为真时,我的一个 Composables 中的文本会被删除。如何TextStyle
在重新组合时为这种变化设置动画,以使线条淡入而不是突然出现和消失?
@Composable
fun MyComposable(
completed: Boolean
) {
val textStyle = TextStyle(textDecoration = if (completed) TextDecoration.LineThrough else null)
Text(
text = title,
color = textColor,
style = textStyle,
modifier = Modifier.align(Alignment.CenterVertically)
)