forked from ghostfox/qyouradio
Move project files to repo root
This commit is contained in:
58
Main.qml
Executable file
58
Main.qml
Executable 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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user