linux.x86.linphone/Linphone/view/Item/RectangleTest.qml
2023-12-05 17:24:37 +01:00

15 lines
358 B
QML

import QtQuick 2.7
Rectangle {
function genRandomColor(){
return '#'+ Math.floor(Math.random()*255).toString(16)
+Math.floor(Math.random()*255).toString(16)
+Math.floor(Math.random()*255).toString(16)
}
anchors.fill: parent
color: genRandomColor() //"blue"
opacity: 0.2
border.color: genRandomColor() //"red"
border.width: 2
}