1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-14 23:33:34 +00:00

add/remove continue button

This commit is contained in:
Kyle Spearrin
2019-05-28 09:12:05 -04:00
parent 29ab7f7a30
commit 822fc7f308
3 changed files with 22 additions and 6 deletions

View File

@@ -19,6 +19,21 @@ namespace Bit.App.Pages
public HybridWebView DuoWebView { get; set; }
public void AddContinueButton()
{
if(ToolbarItems.Count == 0)
{
ToolbarItems.Add(_continueItem);
}
}
public void RemoveContinueButton()
{
if(ToolbarItems.Count > 0)
{
ToolbarItems.Remove(_continueItem);
}
}
protected async override void OnAppearing()
{
base.OnAppearing();