1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
pragma Strict import QtQml QtObject { id: root property int stackViewDepth: 0 onStackViewDepthChanged: { if (stackViewDepth > 1) { root.objectName = "backgroundBlur" return true } root.objectName = "backgroundImage" return false } }