Files
tactileipc3d/qml/content/Toggle.qml
2025-12-18 09:19:39 +08:00

19 lines
373 B
QML

import QtQuick
import QtQuick.Controls
Item {
property string text
property alias checked: toggleIndicator.checked
Label {
id: toggleText
text: parent.text
anchors.verticalCenter: toggleIndicator.verticalCenter
}
Switch {
id: toggleIndicator
anchors.left: toggleText.right
anchors.leftMargin: 8
}
}