We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1171789 + 9d0be83 commit d494633Copy full SHA for d494633
1 file changed
README.md
@@ -153,11 +153,10 @@ Box(
153
val animatableCardState = rememberAnimatableCardState(
154
initialSize = DpSize(80.dp, 80.dp),
155
targetSize = DpSize(Dp.Infinity, 120.dp),
156
- toTargetSizeAnimationSpec = tween(500, 500),
+ toTargetSizeAnimationSpec = tween(500, 500), // add delay(500) for target
157
initialShape = RoundedCornerShape(32.dp),
158
targetShape = RoundedCornerShape(0.dp),
159
toTargetShapeAnimationSpec = tween(500, 500),
160
- toTargetAlphaAnimationSpec = tween(500, 500),
161
initialOffset = DpOffset(0.dp, 0.dp),
162
targetOffset = DpOffset(0.dp, - Dp.Infinity),
163
toInitialOffsetAnimationSpec = tween(500, 500),
0 commit comments