How to create a "StackView in QML Qt " equivalent in Godot UI ?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By amrith

Hi,

I have used Qt Qml for creating UI for events . I am wondering how to create something like stackview in QML

https://doc.qt.io/qt-5/qml-qtquick-controls2-stackview.html

Basically UI is having multiple pages and only one page is loaded/ shown at a time.

Please suggest me an approach i can take . I am new to GOdot and really loving it for its simplicity!

one suggestion, there may be better ones
you could have a bunch of children nodes for a container or something, and make only one visible
and when you want to switch, you could hide() the others and only show one

1234ab | 2022-01-05 19:44