blob: c67bc75562821f1911452f34de7d1a78f67126a0 (
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
//![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]
|