bump libs

This commit is contained in:
T8RIN
2025-05-01 16:53:16 +03:00
parent bb9a8ef119
commit 30597dc68c
2 changed files with 7 additions and 4 deletions

View File

@ -213,7 +213,10 @@ fun animateShape(
dampingRatio = Spring.DampingRatioLowBouncy,
stiffness = Spring.StiffnessMediumLow
),
): Shape = rememberAnimatedShape(targetValue, animationSpec)
): Shape = rememberAnimatedShape(
currentShape = targetValue,
animationSpec = animationSpec
)
@Composable
fun shapeByInteraction(
@ -251,8 +254,8 @@ fun shapeByInteraction(
if (targetShape is RoundedCornerShape) {
return key(shape, pressedShape) {
rememberAnimatedShape(
targetShape,
animationSpec,
currentShape = targetShape,
animationSpec = animationSpec,
)
}
}