Rectangle {
width: 640
height: 480
color: "white"
Rectangle {
id: blackRect
width: 200
height: 50
color: "red"
visible: false
}
DropShadow {
id: shadow
anchors.fill: blackRect
horizontalOffset: 0
verticalOffset: 5
radius: 12
samples: 24
spread: 0.0
color: "#000000"
transparentBorder: true;
source: blackRect
}
}
↧










