Skip to content
Snippets Groups Projects
Select Git revision
  • 30c1a6eee4d95be5b19dfc2e6f26e7fc007015c6
  • main default protected
2 results

Main.qml

Blame
  • Main.qml 438 B
    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
            }
        }
    }