import QtQuick import QtQuick.Controls import input_blocker_tests Window { id: window width: 640 height: 480 visible: true contentItem.rotation: 90 // Target board specific. ListView { anchors.fill: parent model: 300 spacing: 8 delegate: Rectangle { width: ListView.view.width height: 32 color: "orange" Button { anchors.fill: parent } } } InputBlocker { anchors.fill: parent } }