init
This commit is contained in:
@@ -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!")
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user