Can I hide the Xamarin.Auth navigation bar?

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 ()
{
  ...
  // The authentication provider could also be Facebook, Twitter, or Microsoft
  user = await TodoItemManager.DefaultManager.CurrentClient.LoginAsync(this, MobileServiceAuthenticationProvider.Google);
  ...
}

enter image description here

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

+4
source share
1 answer

Source: https://habr.com/ru/post/1666776/


All Articles