import QtQuick import QtQuick.Controls Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Rectangle { x:100 y:50 width: 300 height: 200 color:Qt.color("blue") opacity: 0.5 SwipeView { id:swipe0 anchors.fill: parent Repeater { model: 10 delegate:Item { implicitWidth: 200 //remove this line to mask out the bug Label { y:index*15 text: "Page " + index color: Qt.color("red") } } } } } }