23 lines
332 B
QML
23 lines
332 B
QML
|
import QtQuick 2.15
|
||
|
import QtQuick.Controls 2.15
|
||
|
import QtQuick.Window 2.15
|
||
|
|
||
|
Window {
|
||
|
width: 640
|
||
|
height: 480
|
||
|
visible: true
|
||
|
title: qsTr("Hello World")
|
||
|
|
||
|
Page {
|
||
|
id: app
|
||
|
|
||
|
anchors.fill: parent
|
||
|
|
||
|
Label {
|
||
|
anchors.centerIn: parent
|
||
|
|
||
|
text: "Hello World :)"
|
||
|
}
|
||
|
}
|
||
|
}
|