import QtQuick 2.15 import QtQuick.Controls 2.15 ApplicationWindow { width: 640 height: 480 visible: true ListView { model: 1000 anchors.fill: parent delegate: Text { text: index } Component.onCompleted: positionViewAtIndex(500, ListView.End) } }