bitwarden-android/src/App/Controls/ExtendedContentPage.cs

14 lines
245 B
C#
Raw Normal View History

using System;
using Xamarin.Forms;
namespace Bit.App.Controls
{
public class ExtendedContentPage : ContentPage
{
public ExtendedContentPage()
{
BackgroundColor = Color.FromHex("efeff4");
}
}
}