aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtQml/hw.qml
blob: 723901d96f1a1334c64834716d68b676b8fda025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.0

Rectangle {
     id: page
     width: 500; height: 200
     color: "lightgray"

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

     Image {
         // It's okay for this to fail.
         source: "http://localhost/logo.png"
     }
}