forked from ghostfox/qyouradio
26 lines
413 B
QML
Executable File
26 lines
413 B
QML
Executable File
import QtQuick 6.8
|
|
import QtQuick.Layouts 6.8
|
|
import QYRComponents 1.0
|
|
|
|
ApplicationWindow {
|
|
width: 640
|
|
height: 480
|
|
title: qsTr("Hello World")
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
|
|
Button {
|
|
text: qsTr("Settings")
|
|
}
|
|
|
|
CheckBox {}
|
|
Slider {
|
|
from: 0.0
|
|
value: 0.5
|
|
stepSize: 0.1
|
|
to: 1.1
|
|
}
|
|
}
|
|
}
|