-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.qml
More file actions
38 lines (32 loc) · 754 Bytes
/
main.qml
File metadata and controls
38 lines (32 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
ApplicationWindow {
id: root
height: minimumHeight
minimumHeight: 360
minimumWidth: 640
title: "Python - PySide6 - Qt"
visible: true
width: minimumWidth
ColumnLayout {
anchors.fill: parent
anchors.margins: 12
spacing: 6
Rectangle {
Layout.fillHeight: true
Layout.fillWidth: true
color: "dodgerblue"
}
Rectangle {
Layout.fillHeight: true
Layout.fillWidth: true
color: "navajowhite"
}
Rectangle {
Layout.fillHeight: true
Layout.fillWidth: true
color: "darkseagreen"
}
}
}