import Ubuntu.Components 1.3 import QtQuick 2.2 MainView { AdaptivePageLayout { id: layout primaryPage: mainPage anchors.fill: parent Page { id: mainPage title: "Blabla" Rectangle { color: "gray" anchors.fill: parent } } Component.onCompleted: layout.addPageToNextColumn(mainPage, page) Page { id: page states: [ PageHeadState { name: "foobar" head: page.head contents: Rectangle { color: "orange" anchors.fill: parent } actions: [ Action { iconName: "add" } ] } ] state: "foobar" } } }