When I put several images in a ColumnLayout, they overwrite themselves and I see only the last one.
Here is a sample of my code :
Rectangle{
width: parent.width
color: "#00ffffff"
height: 370
ColumnLayout{
width : parent.width
spacing : 0
Image {
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
source: "img/img1.png"
}
Image {
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
source: "img/img2.png"
}
Image {
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
source: "img/img3.png"
}
}
}
Do you have any idea on how I can manage to see the 3 images one below the other ?