Is it possible to hide the Xamarin.Auth navigation bar?
I searched the Xamarin Forum and many others, but no one seems to have ever done this ...
For authentication, I follow the Authenticate Users Guide with Azure Mobile Apps .
This is my current code (on Android ):
public async Task<bool> AuthenticateAsync ()
{
...
user = await TodoItemManager.DefaultManager.CurrentClient.LoginAsync(this, MobileServiceAuthenticationProvider.Google);
...
}

If this is not possible ... Is it possible to somehow wrap the parameters of social input? (e.g. web view or sth.?)
source
share