import QtQuick import QtQuick.Window Window { width: 640 height: 480 visible: true title: qsTr("Hello World") ShaderEffect { anchors.centerIn: parent height: 184 width: 80 fragmentShader: "shaders/solidcolor.frag.qsb" property color color: "lightsteelblue" } }