ShellLoginSample icon indicating copy to clipboard operation
ShellLoginSample copied to clipboard

Sample of how you can do a LoginPage flow with Shell in v4.1

Results 3 ShellLoginSample issues
Sort by recently updated
recently updated
newest added

I followed your example for introducing login screen to our application. The issues I am facing is that it seems that LoginPage stays in memory (not collected by GC). In...

Hi, I'm trying to implement a log out functionality with the following code: ```javascript private async void LogoutButton_Clicked(object sender, EventArgs e) { await Xamarin.Essentials.SecureStorage.SetAsync("isLogged", "0"); Application.Current.MainPage = new LoginPage(); await...