import QtQuick 2.0 import QtQuick.Controls 2.12 Rectangle { id: test color: "black" width: 1280 height: 720 MouseArea{ anchors.fill: parent onClicked: swipeView.currentIndex = (swipeView.currentIndex === 0)? 1 : 0 } SwipeView{ anchors.fill: parent id: swipeView Rectangle{ color: "red" } Rectangle{ color: "green" } } }