fix qml issue after rebasing

This commit is contained in:
Iuri Matias 2020-05-08 19:04:04 -04:00
parent 3b9be01cc5
commit 6e20f47ec8
1 changed files with 102 additions and 85 deletions

View File

@ -160,6 +160,15 @@ ApplicationWindow {
height: parent.height
Layout.minimumWidth: 200
ColumnLayout {
anchors.rightMargin: 0
anchors.fill: parent
Item {
Layout.preferredHeight: 100
Layout.fillHeight: false
Layout.fillWidth: true
Text {
id: element
x: 772
@ -237,6 +246,12 @@ ApplicationWindow {
font.pixelSize: 28
}
}
}
Item {
Layout.fillHeight: true
Layout.fillWidth: true
Component {
id: chatViewDelegate
Label { text: "Name:" + name }
@ -249,6 +264,8 @@ ApplicationWindow {
delegate: chatViewDelegate
}
}
}
}
Item {
width: parent.width/2