import QtQuick 2.12 import QtQuick.Controls 2.12 ListView { width: 100 height: 500 model: 10 spacing: 10 delegate: Control { width: 100 height: 100 // uncomment this line to make scrolling work: // PointHandler {} contentItem: Rectangle { width: 100 height: 100 color: "red" } } }