mirror of
https://github.com/bitwarden/android.git
synced 2024-11-02 08:03:56 +03:00
22 lines
562 B
C#
22 lines
562 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class ExtendedEditor : Editor
|
|
{
|
|
public ExtendedEditor()
|
|
{
|
|
TextColor = Color.FromHex("333333");
|
|
}
|
|
|
|
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); }
|
|
}
|
|
}
|
|
}
|