aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/templates/qtquick/qtquick_2_4/MainForm.ui.qml
blob: 2443b996e2df8b54e19fa58075cff1e2cbe0fbf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.4

Rectangle {
    property alias mouseArea: mouseArea

    width: 360
    height: 360

    MouseArea {
        id: mouseArea
        anchors.fill: parent
    }

    Text {
        anchors.centerIn: parent
        text: "Hello World"
    }
}