I have an App that doesn't use AppShell at all. It only uses SFNavigationDrawer in a MainPage switching the NavDrawerContent with respective NaviagtionPages. See https://www.syncfusion.com/forums/186017/switch-between-several-independent-pages as example.
In my app I need a LoginScreen shown previous to the Mainpage and before the NavDrawer is visible.
If I initialize my app in App.xaml.cs with
MainPage = new LoginPage();
the LoginPage is shown first. Upon clicking the login button it should forward me to MainPage and create the SFNavDrawer.
How can I achieve this?
Thanks in advance,
Toby