Hi!
I have simple page with two rects:
code is
import QtQuick 2.0
import Sailfish.Silica 1.0
Page {
id: page
Rectangle {
color: "red"
x: 100
y: 100
width: 300
height: 150
border.color: "yellow"
border.width: 15
radius: 15
}
Rectangle {
color: "green"
x: 150
y: 150
width: 300
height: 150
border.color: "blue"
border.width: 15
radius: 15
opacity: 50
}
}
How I can set blur effect (semi-transparent) for green rect , like app drawer menu ?