Наша сборка Qt VS Tools
giy
2022-06-13 175679ae608f0b295d761588d332f635b21bdf30
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.3
 
Rectangle {
    width: 200
    height: 100
    color: "red"
 
    Text {
        anchors.centerIn: parent
        text: "Hello, World!"
    }
}