This repository has been archived on 2026-01-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
deprecated-navidrome_client/resources/qml/Main.qml
T
2026-01-03 12:01:57 +01:00

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!")
}
}
}