diff --git a/examples/kirigami/Move.qml b/examples/kirigami/Move.qml new file mode 100644 index 0000000..f4b805a --- /dev/null +++ b/examples/kirigami/Move.qml @@ -0,0 +1,17 @@ +... +import QtQuick 2.2 +... + +Kirigami.ApplicationWindow { + ... + Rectangle { + ... + NumberAnimation on y { + running: true + to: 30 + duration: Kirigami.Units.shortDuration + easing.type: Easing.InOutQuad + } + } + ... +}