From b333c527dab4724b289d83301f36cab684c944ef Mon Sep 17 00:00:00 2001 From: xfy Date: Thu, 23 Jul 2026 14:28:01 +0800 Subject: [PATCH] =?UTF-8?q?feat(ui):=20=E4=B8=BA=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E5=99=A8=E7=BD=91=E6=A0=BC=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=85=83=E7=B4=A0=E5=88=A0=E9=99=A4=E4=B8=8E=E5=B9=B3=E7=A7=BB?= =?UTF-8?q?=E8=BF=87=E6=B8=A1=E5=8A=A8=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kotlin/plus/rua/project/ui/DateRecorderScreen.kt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/core/src/main/kotlin/plus/rua/project/ui/DateRecorderScreen.kt b/core/src/main/kotlin/plus/rua/project/ui/DateRecorderScreen.kt index ff55637..70e596f 100644 --- a/core/src/main/kotlin/plus/rua/project/ui/DateRecorderScreen.kt +++ b/core/src/main/kotlin/plus/rua/project/ui/DateRecorderScreen.kt @@ -370,7 +370,15 @@ private fun RecordGrid( } else { onStartSelectionWith(record.id) } - } + }, + modifier = Modifier.animateItem( + fadeInSpec = tween(300), + fadeOutSpec = tween(300), + placementSpec = spring( + stiffness = Spring.StiffnessMediumLow, + dampingRatio = Spring.DampingRatioMediumBouncy + ) + ) ) } }