I noticed that in previous version of QML, it was possible for example to blur some text such as
Rectangle {
width: 400
height: 200
color: "lightblue"
Text {
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
text: "Qt Quick"; font.pixelSize: 64
effect: Blur { blurRadius: 5 }
}
}
I can’t find the blur property anymore. How can we achieve the same effect?
Thanks
↧