mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
27 lines
565 B
C#
27 lines
565 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class ExtendedNavigationPage : NavigationPage
|
|
{
|
|
public ExtendedNavigationPage()
|
|
: base()
|
|
{
|
|
SetDefaults();
|
|
}
|
|
|
|
public ExtendedNavigationPage(Page root)
|
|
: base(root)
|
|
{
|
|
SetDefaults();
|
|
}
|
|
|
|
private void SetDefaults()
|
|
{
|
|
// default colors for our app
|
|
BarBackgroundColor = Color.FromHex("3c8dbc");
|
|
BarTextColor = Color.White;
|
|
}
|
|
}
|
|
}
|