mirror of
https://github.com/bitwarden/android.git
synced 2025-01-11 18:57:39 +03:00
proper class on ExtendedViewCell
This commit is contained in:
parent
aaee0212f0
commit
1031ddcd83
1 changed files with 2 additions and 2 deletions
|
@ -6,10 +6,10 @@ namespace Bit.App.Controls
|
||||||
public class ExtendedViewCell : ViewCell
|
public class ExtendedViewCell : ViewCell
|
||||||
{
|
{
|
||||||
public static readonly BindableProperty BackgroundColorProperty =
|
public static readonly BindableProperty BackgroundColorProperty =
|
||||||
BindableProperty.Create(nameof(BackgroundColor), typeof(Color), typeof(ExtendedTextCell), Color.White);
|
BindableProperty.Create(nameof(BackgroundColor), typeof(Color), typeof(ExtendedViewCell), Color.White);
|
||||||
|
|
||||||
public static readonly BindableProperty ShowDisclousureProperty =
|
public static readonly BindableProperty ShowDisclousureProperty =
|
||||||
BindableProperty.Create(nameof(ShowDisclousure), typeof(bool), typeof(ExtendedTextCell), false);
|
BindableProperty.Create(nameof(ShowDisclousure), typeof(bool), typeof(ExtendedViewCell), false);
|
||||||
|
|
||||||
public Color BackgroundColor
|
public Color BackgroundColor
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue