How to make GridView with special zone , which would be free of delegates ?
-
GridView {
id: grid
anchors.fill: parent
cellWidth: 100
cellHeight: 100
model: 50
delegate: Rectangle {
width: 100; height: 100
color: "lightblue"
Text { text: index }
}Rectangle { id: specialZone width: 200 height: 100 color: "yellow" z: 10 // Keeps it on top anchors.top: parent.top anchors.left: parent.left Text { anchors.centerIn: parent text: "Special Zone" } }
}
-
Hi,
Looks like this should be part of your other thread, no ?
-
Hi,
Looks like this should be part of your other thread, no ?
-
@Basitsst said in How to make GridView with special zone , which would be free of delegates ?:
@SGaist g
Is that a yes ?
-
@Basitsst said in How to make GridView with special zone , which would be free of delegates ?:
@SGaist g
Is that a yes ?