RebAl-CLI/rebalqt/RebalUI/RebalUI.qml

18 lines
249 B
QML
Raw Normal View History

2016-09-27 17:14:48 +02:00
import QtQuick 2.0
Rectangle {
width: 360
height: 360
Text {
anchors.centerIn: parent
text: "Hello World"
}
MouseArea {
anchors.fill: parent
onClicked: {
Qt.quit();
}
}
}