Hiii everyOne,
I have a listView that contains some elements :
ListView {
model: menuModel
delegate: categoryDelegate
...
}
ListModel {
id: menuModel
ListElement {
...
Component {
id: categoryDelegate
Column {
Rectangle {
id: categoryItem
...
Image {
id: img
...
}
ListView {
model: menuModel
delegate: categoryDelegate
...
}
ListModel {
id: menuModel
ListElement {
...
Component {
id: categoryDelegate
Column {
Rectangle {
id: categoryItem
...
Image {
id: img
...
}
To copy to clipboard, switch view to plain text mode
I want for each element (each rectangle) load a specific image
The code above load the same image for each element
Cheers,
Bookmarks