I have 4 QML files: MainMenu.qml
, AppArea.qml
, Result.qml
and main.qml
.
When my app starts, I want to see first page as MainMenu.qml
fullscreen. There is a button (on MainMenu.qml
) to start AppArea.qml
. When I click the the button, I want to start AppArea.qml
as fullscreen new window.
There is a button (on AppArea.qml
), when I click that button, I want to show Result.qml
but I want to see Result.qml
on AppArea.qml
, I mean when Result.qml
come outs, AppArea.qml
will not disappear but Result.qml
will appear on AppArea.qml
.
There is a button on Result.qml
. When I click the button, the Repeater
in AppArea.qml
will regenerate, because maybe model
of Repeater
changing like 1, 2, 3, 4...
. There is a button on AppArea.qml
, when I click the button, I want to open MainMenu.qml
as a fullscreen new window like AppArea.qml
.
Actually you can think basic: My app is a game like this:
How way should I choose for these jobs?