This commit is contained in:
2026-01-03 12:01:57 +01:00
commit daa761d75a
7 changed files with 537 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
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!")
}
}
}