mirror of
https://github.com/bitwarden/mobile
synced 2025-12-27 13:43:32 +00:00
18 lines
460 B
C#
18 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); }
|
|
}
|
|
}
|
|
}
|