mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
16 lines
482 B
C#
16 lines
482 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class ExtendedSlider : Slider
|
|
{
|
|
public static readonly BindableProperty ThumbBorderColorProperty = BindableProperty.Create(
|
|
nameof(ThumbBorderColor), typeof(Color), typeof(ExtendedSlider), Color.Gray);
|
|
|
|
public Color ThumbBorderColor
|
|
{
|
|
get => (Color)GetValue(ThumbBorderColorProperty);
|
|
set => SetValue(ThumbBorderColorProperty, value);
|
|
}
|
|
}
|
|
}
|