I\'ve been searching how to make the background of my QtQuick 2.0 application transparent. Most answers I\'ve found use Qt
Try this
import QtQuick 2.2 import QtQuick.Window 2.0 Window { id: backlight visible: true title: qsTr("backlight") width: 500 height: 50 x: (Screen.width - width) / 2 y: (Screen.height - height) / 2 color: "transparent" }