import QtQuick 2.15 import QtQuick.Controls 2.15 ApplicationWindow { width: 640 height: 480 visible: true title: qsTr("Tabs") SwipeView { id: swipeView anchors.fill: parent currentIndex: page.currentIndex Page1Form { } Page2Form { } } PageIndicator { id: page count: swipeView.count currentIndex: swipeView.currentIndex anchors.bottom: swipeView.bottom anchors.horizontalCenter: swipeView.horizontalCenter } }