summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/t1/tutorial1.qml
blob: ec29f4f032f50b7d8db44e61251ecaf4a1a38629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Rect {
    id: Page
    width: 480
    height: 200
    color: "white"
    Text {
        id: HelloText
        text: "Hello world!"
        font.size: 24
        font.bold: true
        y: 30
        anchors.horizontalCenter: Page.horizontalCenter
    }
}