Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Viewing all articles
Browse latest Browse all 4972

How to replace the effect property of the Text element [SOLVED]

$
0
0
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

Viewing all articles
Browse latest Browse all 4972

Trending Articles