import QtQuick import QtQuick.Templates as T T.SwipeView { id: control implicitWidth: Math.max((background ? background.implicitWidth : 0) + leftInset + rightInset, (contentItem ? contentItem.implicitWidth : 0) + leftPadding + rightPadding) implicitHeight: Math.max((background ? background.implicitHeight : 0) + topInset + bottomInset, (contentItem ? contentItem.implicitHeight : 0) + topPadding + bottomPadding) contentItem: ListView { model: control.contentModel interactive: control.interactive currentIndex: control.currentIndex spacing: control.spacing orientation: control.orientation focus: control.focus boundsBehavior: Flickable.StopAtBounds } }