mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
28 lines
577 B
C#
28 lines
577 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.FromHex("ffffff");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|