mirror of
https://github.com/bitwarden/mobile
synced 2025-12-29 14:43:50 +00:00
19 lines
358 B
C#
19 lines
358 B
C#
using System;
|
|
namespace Bit.App.Pages
|
|
{
|
|
public class BaseModalContentPage : BaseContentPage
|
|
{
|
|
public BaseModalContentPage()
|
|
{
|
|
}
|
|
|
|
protected void PopModal_Clicked(object sender, EventArgs e)
|
|
{
|
|
if (DoOnce())
|
|
{
|
|
Navigation.PopModalAsync();
|
|
}
|
|
}
|
|
}
|
|
}
|