aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/tutorials/helloworld/tutorial1.qml
blob: fe64925d2735112eefbeb80a40c772dbae8ecc30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//![0]
//![3]
import QtQuick 2.0
//![3]

//![1]
Rectangle {
    id: page
    width: 320; height: 480
    color: "lightgray"
//![1]

//![2]
    Text {
        id: helloText
        text: "Hello world!"
        y: 30
        anchors.horizontalCenter: page.horizontalCenter
        font.pointSize: 24; font.bold: true
    }
//![2]
}
//![0]