Javascriptimport QtQuick 2.5import QtQuick.Window 2.2import QtQuick.Controls 1.4 Window { visible: true width: 640 height: 480 title: qsTr("Test Lines") ScrollView { anchors.fill: parent ListView { id: listView anchors.fill: parent model: 1000000 delegate: Text { width: listView.width height: 20 text: qsTr("Item: %1").arg(index + 1) } } }}