I have a problem with my navigation stack.
I have three pages and in the first one I have a PushAsync to the second page in the OnAppearing Trigger. The second page has a PushAsync to the third page in the constructor.
So this is what the stack should look like:
Page1 > Page2 > Page3
However, the stack looks like this
Page1 > Page3 > Page2
So my question is, do you call pushasync in constructor or don't do it. I'm still at the beginning so I don't know what to do and what not to do.