1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-27 05:33:23 +00:00
Files
mobile/src/App/Controls/ExtendedTabbedPage.cs

25 lines
638 B
C#

using System;
using Xamarin.Forms;
namespace Bit.App.Controls
{
public class ExtendedTabbedPage : TabbedPage
{
public ExtendedTabbedPage()
{
BackgroundColor = Color.FromHex("efeff4");
}
public static readonly BindableProperty TintColorProperty =
BindableProperty.Create(nameof(TintColor), typeof(Color), typeof(ExtendedTabbedPage), Color.White);
public Color TintColor
{
get { return (Color)GetValue(TintColorProperty); }
set { SetValue(TintColorProperty, value); }
}
public bool NoBorder { get; set; }
}
}