mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
19 lines
500 B
C#
19 lines
500 B
C#
|
using Bit.App.Enums;
|
|||
|
using System;
|
|||
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Controls
|
|||
|
{
|
|||
|
public class ExtendedButton : Button
|
|||
|
{
|
|||
|
public static readonly BindableProperty PaddingProperty =
|
|||
|
BindableProperty.Create(nameof(Padding), typeof(Thickness), typeof(ExtendedButton), default(Thickness));
|
|||
|
|
|||
|
public Thickness Padding
|
|||
|
{
|
|||
|
get { return (Thickness)GetValue(PaddingProperty); }
|
|||
|
set { SetValue(PaddingProperty, value); }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|