1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-17 10:45:40 +01:00
bitwarden-mobile/src/App/Controls/MonoEntry.cs
2019-05-01 15:11:54 -04:00

21 lines
466 B
C#

using Xamarin.Forms;
namespace Bit.App.Controls
{
public class MonoEntry : Entry
{
public MonoEntry()
{
switch(Device.RuntimePlatform)
{
case Device.iOS:
FontFamily = "Menlo-Regular";
break;
case Device.Android:
FontFamily = "RobotoMono_Regular.ttf#Roboto Mono";
break;
}
}
}
}