import QtQuick 2.4 import Ubuntu.Components 1.3 MainView { applicationName: "untitled9.mzanetti" width: units.gu(100) height: units.gu(75) ListItem { anchors { left: parent.left; right: parent.right; verticalCenter: parent.verticalCenter } Rectangle { anchors.fill: parent; color: "khaki"; opacity: .2 } onClicked: print("Clicked!!!") } }