mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
13 lines
245 B
C#
13 lines
245 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class ExtendedContentPage : ContentPage
|
|
{
|
|
public ExtendedContentPage()
|
|
{
|
|
BackgroundColor = Color.FromHex("efeff4");
|
|
}
|
|
}
|
|
}
|