'Correct way to go Login page after logout?
I'm using FlyOut, when I tapped the Logout (for example) the FlyOut menu is still showing when I screen swipe from left.
<FlyoutItem Title="Logout" >
<Tab>
<ShellContent ContentTemplate="{DataTemplate out:LoginPage}" />
</Tab>
</FlyoutItem>
Is there any alternative to just show only the Login page?
Solution 1:[1]
Put this on top in your LoginPage.xaml
Shell.FlyoutBehavior="Disabled"
And maybe this
Shell.NavBarIsVisible="False"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Bas H |
