nosignal-shell/components/controls/ToggleRow.qml
2026-03-22 06:02:19 +11:00

27 lines
458 B
QML

import QtQuick
import QtQuick.Layouts
import qs.components
import qs.components.controls
import qs.config
RowLayout {
id: root
required property string label
property alias checked: toggle.checked
property alias toggle: toggle
Layout.fillWidth: true
spacing: Appearance.spacing.normal
StyledText {
Layout.fillWidth: true
text: root.label
}
StyledSwitch {
id: toggle
cLayer: 2
}
}