mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
24 lines
544 B
C#
24 lines
544 B
C#
|
using System;
|
|||
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Controls
|
|||
|
{
|
|||
|
public class DismissModalToolBarItem : ToolbarItem
|
|||
|
{
|
|||
|
private readonly ContentPage _page;
|
|||
|
|
|||
|
public DismissModalToolBarItem(ContentPage page, string text = null)
|
|||
|
{
|
|||
|
_page = page;
|
|||
|
Text = text ?? "Close";
|
|||
|
Clicked += ClickedItem;
|
|||
|
Priority = -1;
|
|||
|
}
|
|||
|
|
|||
|
private async void ClickedItem(object sender, EventArgs e)
|
|||
|
{
|
|||
|
await _page.Navigation.PopModalAsync();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|