linphone-desktop/Linphone/view/Test/RectangleTest.qml
Alexandre Jörgensen c73eea248f Format QML files
2026-03-10 12:32:35 +01:00

13 lines
329 B
QML

import QtQuick
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);
}
color: genRandomColor() //"blue"
opacity: 0.2
border.color: genRandomColor() //"red"
border.width: 2
}