import QtQuick 2.4 import Ubuntu.Components 1.3 ListView { id: root width: 800 height: 600 model: 100 delegate: ListItem { activeFocusOnPress: false width: root.width ListItemLayout { title.text: "Item: " + index } onClicked: console.debug("Item clicked") } }