Is it OK to use multiple stackviews in an application?
-
wrote on 8 Feb 2017, 12:46 last edited by MikhailG 2 Sept 2017, 07:37
-
@MikhailG Where are you loading the menus ?
-
wrote on 9 Feb 2017, 07:31 last edited by MikhailG 2 Sept 2017, 07:37
@p3c0 Thank you for your reply. I`m loading them in main.qml.
ApplicationWindow { id:aplWin minimumWidth: 1280 maximumWidth: minimumWidth minimumHeight: 1024 maximumHeight: minimumHeight visible: true StackView { id: stackView anchors.fill: parent initialItem: SignInWin {} } }
If autorization was successful than I want to load a Page that contains for buttons that represent another four pages and navigate among them using the StackView
I hope I cleared that out.
-
@MikhailG so it you have a requirement as such then you have to go that way. May be you can try other alternatives to
StackView
but I guess there wont be. Check if you can settle withListView
.
Also do you have any specific issues or errors if you go that way ? -
@MikhailG so it you have a requirement as such then you have to go that way. May be you can try other alternatives to
StackView
but I guess there wont be. Check if you can settle withListView
.
Also do you have any specific issues or errors if you go that way ?
1/5