I have two page Home, Login , they works like bellow
1)App->Home-> check if Authed --yes-> show Home View
--no-> pushAsync LoginView(I see a Back Button on the navigation bar,but I don't need it)
if I want to implement this way, I need to control the navigation.
2)App->Home-> check if Authed --yes-> show Home View
--no-> popModelAsync LoginView
seems it working well, but I can not pushAsync another Page in LoginView anymore, such as Creat Account...
What is the best way for this in Xamarin.Forms?