2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2018 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2018-06-25 16:12:29 +00:00
|
|
|
|
|
|
|
import QtQuick 2.12
|
2017-06-23 11:34:27 +00:00
|
|
|
|
|
|
|
Row {
|
|
|
|
id: root
|
|
|
|
property bool checked : false
|
|
|
|
property string label : "CheckBox"
|
|
|
|
Rectangle {
|
|
|
|
width: 10; height: 10
|
|
|
|
color: root.checked ? "#202020" : "transparent"
|
|
|
|
border.color: "black"
|
|
|
|
TapHandler {
|
|
|
|
onTapped: root.checked = !root.checked
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Text { text: root.label }
|
|
|
|
}
|