import QtQuick

Window {
    width: 640
    height: 480
    visible: true
    title: qsTr("Hello World")

    Rectangle {
        id: rectangle
        x: 220
        y: 140
        width: 200
        height: 200
        color: "#110fb3"

        Text {
            id: _text
            x: 59
            y: 80
            width: 53
            height: 41
            text: qsTr("TEXTE")
            font.pixelSize: 30
        }
    }
}