This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/guh-control/ui/paramdelegates/BoolParamDelegate.qml
2017-11-06 21:55:35 +01:00

21 lines
369 B
QML

import QtQuick 2.8
import QtQuick.Layouts 1.2
import QtQuick.Controls 2.1
RowLayout {
id: root
property alias text: label.text
property alias value: theSwitch.checked
Label {
id: label
Layout.fillWidth: true
}
Switch {
id: theSwitch
checked: root.value === true
onClicked: root.value = checked
}
}