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 } } }