Files
qt-creator/share/qtcreator/templates/wizards/bb-qt5-quick2app/qml/main.qml

18 lines
264 B
QML
Raw Normal View History

import QtQuick 2.0
Rectangle {
width: 1024
height: 600
Text {
text: qsTr("Hello from QtQuick2")
anchors.centerIn: parent
}
MouseArea {
anchors.fill: parent
onClicked: {
Qt.quit();
}
}
}