【发布时间】:2017-01-14 12:58:06
【问题描述】:
是否有可能隐藏 Xamarin.Auth NavigationBar ?
我搜索了 Xamarin 论坛和许多其他人,但似乎没有人这样做过...
对于身份验证,我遵循指南"Authenticating Users with Azure Mobile Apps"。
这是我当前的代码(在 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);
...
}
如果这是不可能的......有什么办法可以让我自己包装社交登录选项? (即网络视图或某事?)
【问题讨论】:
标签: c# authentication xamarin.forms navigationbar xamarin.auth