Files
qt-creator/share/qtcreator/templates/wizards/bb-qt5-quick2app/qml/main.qml
Tobias Nätterlund a7ac2bb559 New QNX plugin.
This plugin adds support for cross-compiling, deploying, running
and debugging on a PlayBook or QNX Neutrino device.

Change-Id: I0da7ccee40bd7ce4c0d6bdc6884d48ef23167dac
Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
2012-07-13 15:37:34 +02:00

18 lines
264 B
QML

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();
}
}
}