mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-20 19:57:45 +00:00
19 lines
324 B
QML
19 lines
324 B
QML
|
import QtQuick 2.7
|
||
|
import QtQuick.Controls 2.1
|
||
|
import QtQuick.Window 2.0
|
||
|
|
||
|
ApplicationWindow {
|
||
|
id: window
|
||
|
|
||
|
width: 640
|
||
|
height: 480
|
||
|
|
||
|
visible: true
|
||
|
|
||
|
Label {
|
||
|
text: "Hello, world!"
|
||
|
|
||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
}
|
||
|
}
|