workspace rework

This commit is contained in:
Zacharias-Brohn
2026-03-02 13:38:58 +01:00
parent cda00f91a3
commit 9040713231
3 changed files with 221 additions and 84 deletions
+24
View File
@@ -0,0 +1,24 @@
import QtQuick
QtObject {
id: root
property real idx1: index
property int idx1Duration: 100
property real idx2: index
property int idx2Duration: 300
required property int index
Behavior on idx1 {
NumberAnimation {
duration: root.idx1Duration
easing.type: Easing.OutSine
}
}
Behavior on idx2 {
NumberAnimation {
duration: root.idx2Duration
easing.type: Easing.OutSine
}
}
}