Files
illogical-impulse/dots/.config/quickshell/ii/modules/common/widgets/AbstractChoreographable.qml
T
2026-03-21 11:54:47 +01:00

20 lines
417 B
QML

pragma ComponentBehavior: Bound
import QtQuick
import ".."
Item {
id: root
property real progress: 0
default property Item child
implicitWidth: child.implicitWidth
implicitHeight: child.implicitHeight
children: [child]
property var animation: Appearance.animation.elementMoveSmall.numberAnimation.createObject(this)
Behavior on progress {
animation: root.animation
}
}