18 lines
249 B
QML
18 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();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|