27 lines
547 B
QML
27 lines
547 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
Window {
|
|
width: 640
|
|
height: 480
|
|
visible: true
|
|
title: qsTr("Mein Navidrome Client")
|
|
|
|
Column {
|
|
anchors.centerIn: parent
|
|
spacing: 20
|
|
|
|
Text {
|
|
text: "Hallo Navidrome!"
|
|
font.pixelSize: 24
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
}
|
|
|
|
Button {
|
|
text: "Klick mich"
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
onClicked: console.log("Button gedrückt!")
|
|
}
|
|
}
|
|
}
|