import QtQuick 2.12 Rectangle { id: root visible: true width: 640 height: 480 property bool toggle: false color: toggle ? "grey" : "lightblue" MouseArea{ anchors.fill: parent onClicked: toggle = !toggle } }