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