RebAl-CLI/rebalqt/RebalUI/RebalUI.qml
2016-09-27 17:14:48 +02:00

17 lines
249 B
QML

import QtQuick 2.0
Rectangle {
width: 360
height: 360
Text {
anchors.centerIn: parent
text: "Hello World"
}
MouseArea {
anchors.fill: parent
onClicked: {
Qt.quit();
}
}
}