Move project files to repo root

This commit is contained in:
Dark Steveneq
2025-10-11 19:22:51 +02:00
parent 557938bb0d
commit c82b457ccc
45 changed files with 89 additions and 3149 deletions

58
Main.qml Executable file
View File

@@ -0,0 +1,58 @@
import QtQuick 6.8
import QtQuick.Layouts 6.8
import QYRComponents 1.0
ApplicationWindow {
width: 1280
height: 800
title: qsTr("Hello World")
header: Rectangle {
color: Colors.surface1
width: children.width
height: children.height
RowLayout {
anchors.fill: parent
Label {
Layout.fillWidth: true
heading: "h2"
text: "QYouRadio"
font.bold: true
}
Button {
Layout.alignment: Qt.AlignVCenter
text: qsTr("Autoradio")
}
Button {
Layout.alignment: Qt.AlignVCenter
text: qsTr("Live Radio")
}
Button {
Layout.alignment: Qt.AlignVCenter
text: qsTr("Settings")
}
}
}
ColumnLayout {
anchors.fill: parent
Button {
text: qsTr("Settings")
}
CheckBox {}
Slider {
from: 0.0
value: 0.5
stepSize: 0.1
to: 1.1
}
}
}