19 lines
302 B
QML
19 lines
302 B
QML
// Copyright (c) Daniel Gakwaya.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import QtQuick
|
|
|
|
Window {
|
|
visible: true
|
|
width: 640
|
|
height: 480
|
|
title: qsTr("Hello World")
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text : "Hello World";
|
|
color: "red"
|
|
font.pointSize: 20
|
|
}
|
|
}
|