style(lockscreen): make deletion animation a clean inverse fade-out with scale down

This commit is contained in:
Sho 2026-08-02 16:20:39 +09:00
parent b50ef1c8cb
commit 2e54d3556b

View File

@ -302,8 +302,8 @@ Item {
remove: Transition {
ParallelAnimation {
NumberAnimation { property: "scale"; to: 0.0; duration: 180; easing.type: Easing.InBack }
NumberAnimation { property: "opacity"; to: 0.0; duration: 150; easing.type: Easing.OutCubic }
NumberAnimation { property: "scale"; from: 1.0; to: 0.1; duration: 200; easing.type: Easing.InCubic }
NumberAnimation { property: "opacity"; from: 1.0; to: 0.0; duration: 200; easing.type: Easing.OutCubic }
}
}