forked from qt-creator/qt-creator
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>
18 lines
264 B
QML
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();
|
|
}
|
|
}
|
|
}
|
|
|