ListView { width: parent.width height: parent.height model: myModel delegate: Rectangle { width: parent.width height: 40 color: "#dddddd" Text { anchors.centerIn: parent text: modelData } } }