import QtQuick 2.0 import QtQuickUltralite.Extras 1.2 Rectangle { id: root width: 600 height: 600 ListView { id: timeList y : 100 clip: true model : 10 width : 600 height : 500 delegate: Rectangle { id : delegate width: timeList.width height: 76 color: "lightgrey" Text { id: name anchors.left: parent.left anchors.leftMargin: 20 anchors.verticalCenter: parent.verticalCenter text: index } MouseArea { anchors.fill: delegate onClicked: delegate.color = "green" } } } }