mirror of
https://github.com/bitwarden/android.git
synced 2025-01-06 08:17:34 +03:00
4aad34cd75
* Dynamic theme switching and visual tweaks * update action runner to use macos-11 for iOS 15 support * additional tweaks * refinements * refinements * formatting and tweaks
16 lines
485 B
C#
16 lines
485 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.Default);
|
|
|
|
public Color ThumbBorderColor
|
|
{
|
|
get => (Color)GetValue(ThumbBorderColorProperty);
|
|
set => SetValue(ThumbBorderColorProperty, value);
|
|
}
|
|
}
|
|
}
|