SwipeView alternatives?
Solved
QML and Qt Quick
-
I have a UI with a workflow like button bar on top, a further navigation bar on bottom and then various frames (screens) in between. The frame changes based on selection of a button in the top button bar.
How should I describe/implement the middle section to set the current screen based on the selected button in the workflow button bar?
I have something working with a SwipeView, but I dont like the swipe effect .. I just want the current screen to hide and a new one to appear. When using Qt Widgets I was able to get this effect using a QStackedWidget and setting the stack index .. what is the equivalent I should be using with QML and QtQuick?
-
@Captain-Haddock StackView or StackLayout
-