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

21 lines
466 B
C#
Raw Normal View History

2019-04-27 06:37:21 +03:00
using Xamarin.Forms;
namespace Bit.App.Controls
{
public class MonoLabel : Label
{
public MonoLabel()
{
switch(Device.RuntimePlatform)
{
case Device.iOS:
FontFamily = "Menlo-Regular";
break;
case Device.Android:
FontFamily = "RobotoMono_Regular.ttf#Roboto Mono";
break;
}
}
}
}