mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
17 lines
498 B
C#
17 lines
498 B
C#
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Controls
|
|||
|
{
|
|||
|
public class ExtendedSwitchCell : SwitchCell
|
|||
|
{
|
|||
|
public static readonly BindableProperty BackgroundColorProperty =
|
|||
|
BindableProperty.Create(nameof(BackgroundColor), typeof(Color), typeof(ExtendedSwitchCell), Color.White);
|
|||
|
|
|||
|
public Color BackgroundColor
|
|||
|
{
|
|||
|
get { return (Color)GetValue(BackgroundColorProperty); }
|
|||
|
set { SetValue(BackgroundColorProperty, value); }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|