1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

no options during selection mode

This commit is contained in:
Kyle Spearrin
2019-06-24 15:22:46 -04:00
parent 45fbdb8411
commit 94fbf627ba
2 changed files with 22 additions and 5 deletions

View File

@@ -22,15 +22,22 @@ namespace Bit.App.Pages
_selectAction = selectAction;
if(selectAction != null)
{
if(Device.RuntimePlatform == Device.iOS)
{
ToolbarItems.Add(_closeItem);
}
ToolbarItems.Add(_selectItem);
}
if(Device.RuntimePlatform == Device.iOS)
{
ToolbarItems.Add(_moreItem);
}
else
{
ToolbarItems.Add(_historyItem);
if(Device.RuntimePlatform == Device.iOS)
{
ToolbarItems.Add(_moreItem);
}
else
{
ToolbarItems.Add(_historyItem);
}
}
}
@@ -98,5 +105,13 @@ namespace Bit.App.Pages
{
await _vm.SliderChangedAsync();
}
private async void Close_Clicked(object sender, EventArgs e)
{
if(DoOnce())
{
await Navigation.PopModalAsync();
}
}
}
}