1  import QtQuick 2.12
2  import QtQuick.Window 2.12

3  Window {
4      width: 640
5      height: 480
6      visible: true
7      title: qsTr("Column-Row Usage")
8      Item {
9         width: 640
10        height: 480
11        Column { spacing: 10
12            Rectangle {
13                width: 400
14                height: 100
15                color : "blue"
16                Text {
17                    anchors.centerIn: parent
18                    font.pixelSize: 25
19                    text: "Qt C++ Framework tutorial"
20                }
21            }
22            Rectangle {
23                width: 400
24                height: 100
25                color: "red"
26                Text {
27                    anchors.centerIn: parent
28                    font.pixelSize: 25
29                    text: "Qt Quick Framework tutorial"
30                }
31            }
32            Rectangle {
33                width: 400
34                height: 100
35                color: "green"
36                Text {
37                    anchors.centerIn: parent
38                    font.pixelSize: 25
39                    text: "Qt python Framework tutorial"
40                    color: "white"
41                }
42            }
43        }
44    }
45 }
