import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem MainView { height: 300 width: 150 ListItem.ItemSelector { id: listId anchors.top: parent.top anchors.bottom: parent.bottom expanded: true model: ["list", "of", "options", "needing", "some", "vertical", "scrolling", "to", "display", "the", "items", "list"] } Component.onCompleted: { listId.selectedIndex = 9 } }