Hi,
The opacity of an item will always be passed down to its children. Your button must be put outside your half-opaque rectangle.
Do something like this:
Rectangle {
id: containerRectangle
width: 800
height: 600
color: "transparent"
Rectangle {
id: realRectangle
anchors.fill: parent
color: "green"
opacity: 0.4
}
Button {
anchors.centerIn: parent
text: "Click Me!"
}
}
↧








