import QtQuick 2.0 import Ubuntu.Components 1.0 import Ubuntu.Components.ListItems 1.0 as ListItem MainView { width: units.gu(50) height: units.gu(75) Page { id: testPage anchors.fill: parent title: "test" ListItem.ExpandablesColumn { // ART anchors.fill: parent ListItem.Expandable { // DRV onClicked: expanded = true collapseOnClick: true expandedHeight: col.height Column { id: col anchors { left: parent.left; right: parent.right } UbuntuShape { height: units.gu(80) color: "red" } } } ListItem.Expandable {} } } }