import QtQuick 2.0 import QtGraphicalEffects 1.0 // Rectangle { // width: 360 // height: 360 // color: "linen" // Image { // id: img // source: "/Users/davidsarmaholdings/Dropbox/DS/notebooks/Public/agamRodberg.png" // sourceSize: Qt.size(parent.width, parent.height) // smooth: true // visible: false // } // RecursiveBlur { // anchors.fill: img // source: img // radius: 1.5 // loops: 50 // } // TextInput { // id: input1 // x: 8; y: 8 // width: 96; height: 10 // focus: true // text: "Test input 1" // KeyNavigation.tab: input2 // } // TextInput { // id: input2 // x: 8; y: 36 // width: 96; height: 20 // text: "Text Input 2" // KeyNavigation.tab: input1 // } // } Rectangle { width: 360; height: 360 color: "lightblue" Rectangle { width: 360; height: 180 y: 180 color: "red" } Rectangle { width: 60; height: 60 x: 50; y: 50 color: "white" } Rectangle { width: 180; height: 70 x: 120; y: 240 color: "blue" } }