mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
27 lines
849 B
C#
27 lines
849 B
C#
|
using System;
|
|||
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Controls
|
|||
|
{
|
|||
|
public class ExtendedTabbedPage : TabbedPage
|
|||
|
{
|
|||
|
public static readonly BindableProperty TintColorProperty =
|
|||
|
BindableProperty.Create(nameof(TintColor), typeof(Color), typeof(ExtendedTabbedPage), Color.White);
|
|||
|
|
|||
|
public static readonly BindableProperty BarTintColorProperty =
|
|||
|
BindableProperty.Create(nameof(BarTintColor), typeof(Color), typeof(ExtendedTabbedPage), Color.White);
|
|||
|
|
|||
|
public Color TintColor
|
|||
|
{
|
|||
|
get { return (Color)GetValue(TintColorProperty); }
|
|||
|
set { SetValue(TintColorProperty, value); }
|
|||
|
}
|
|||
|
|
|||
|
public Color BarTintColor
|
|||
|
{
|
|||
|
get { return (Color)GetValue(BarTintColorProperty); }
|
|||
|
set { SetValue(BarTintColorProperty, value); }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|