Is there any guidance on how to animate between ma...
# compose
e
Is there any guidance on how to animate between material expressive shapes? I can't find any documentation, would love to be able to do something like this:
Copy code
val materialShape = if(isToggled) MaterialShapes.Square else MaterialShapes.Triangle
Box(
    modifier = Modifier
        .size(40.dp)
        .clip(materialShape.toShape())
        .background(color = Color.Blue)
)