import QtQuick 2.4 import Ubuntu.Components 1.3 MainView { width: units.gu(100) height: units.gu(75) AdaptivePageLayout { anchors.fill: parent primaryPage: Page { flickable: view ListView { id: view anchors.fill: parent model: 1000 delegate: Label { text: model.index } } Scrollbar { flickableItem: view } } } }