mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-25 19:31:57 -08:00
21 lines
416 B
QML
21 lines
416 B
QML
import QtQuick 2.0
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
Rectangle {
|
|
property int d: 120
|
|
id: square
|
|
width: d
|
|
height: d
|
|
anchors.centerIn: parent
|
|
color: "cornflowerblue"
|
|
NumberAnimation on rotation { from: 0; to: -360; duration: 4000; loops: Animation.Infinite; }
|
|
}
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: "Qt Quick running in a widget"
|
|
}
|
|
}
|
|
|