import QtQuick 2.12 import QtQuick.Controls 2.12 ApplicationWindow { visible: true width: 640 height: 480 title: qsTr("Scroll") ScrollView { anchors.fill: parent ListView { width: parent.width; visible: true model: 20; delegate: ItemDelegate { text: "Item " + (index + 1) width: parent.width } populate: Transition { NumberAnimation { properties: "x,y"; duration: 1000; } } } } }