Is there any possibility to hide the Xamarin.Auth NavigationBar ?
I've searched the Xamarin Forum and many others but no one seems to have ever done this...
For authentication I am following the guide "Authenticating Users 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);
...
}
If this is not possible ... Is there any way I could wrap the social login options myself ? (i.e web view or sth. ?)