import QtQuick 2.0 import Ubuntu.Components 0.1 MainView { width: units.gu(48) height: units.gu(60) applicationName: "test" PageStack { Page { title: "Page test" Flickable { anchors.fill: parent contentHeight: contentItem.childrenRect.height Rectangle { anchors.left: parent.left anchors.right: parent.right height: units.gu(60) + 1 color: "red" Rectangle { anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom height: 80 color: "green" } } } } } }