mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
17 lines
460 B
C#
17 lines
460 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class ExtendedEditor : Editor
|
|
{
|
|
public static readonly BindableProperty HasBorderProperty =
|
|
BindableProperty.Create(nameof(HasBorder), typeof(bool), typeof(ExtendedEditor), true);
|
|
|
|
public bool HasBorder
|
|
{
|
|
get { return (bool)GetValue(HasBorderProperty); }
|
|
set { SetValue(HasBorderProperty, value); }
|
|
}
|
|
}
|
|
}
|