Qt qml StackView and GridView
main: loader component
//main.qml
import QtQuick 2.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.0
Window {
id: root
width: 800
height: 480
visible: true
title: qsTr("Hello World")
Rectangle{
id: mainBackGround
anchors.centerIn: parent
width: 580
height: 360
color: "lightGray"
clip: true
Loader{
id: mainLoader
anchors.leftMargin: 20
anchors.topMargin: 20
anchors.top: mainBackGround.top
anchors.left: mainBackGround.left
anchors.right: mainBackGround.right
anchors.bottom: mainBackGround.bottom
source: "StackViewPage.qml"
}
}
}
stack view component: StackVie